Skip to content

Commit

Permalink
Bug #583666 - JSS doesn't respect LDFLAGS
Browse files Browse the repository at this point in the history
libjss4.so was linked without respecting LDFLAGS env variable

https://bugzilla.mozilla.org/show_bug.cgi?id=583666
  • Loading branch information
Xarthisius committed Apr 5, 2018
1 parent 7222b13 commit 7afab35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coreconf/Linux.mk
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ endif
ARCH = linux

DSO_CFLAGS = -fPIC
DSO_LDOPTS = -shared $(ARCHFLAG)
DSO_LDOPTS = $(LDFLAGS) -shared $(ARCHFLAG)
# The linker on Red Hat Linux 7.2 and RHEL 2.1 (GNU ld version 2.11.90.0.8)
# incorrectly reports undefined references in the libraries we link with, so
# we don't use -z defs there.
Expand Down

0 comments on commit 7afab35

Please sign in to comment.