diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-12-13 13:44:54 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-12-13 13:44:54 +0000 |
commit | 7f37a7a60dec8ee0aa18d794b5789cc555da6036 (patch) | |
tree | 2205f606b5f43d410f78cb92311b8516082f1bb3 /src | |
parent | 46e4f20c37be63c326b9ac798c656c266301d5b0 (diff) | |
download | usdx-7f37a7a60dec8ee0aa18d794b5789cc555da6036.tar.gz usdx-7f37a7a60dec8ee0aa18d794b5789cc555da6036.tar.xz usdx-7f37a7a60dec8ee0aa18d794b5789cc555da6036.zip |
another fix to pass better options to the linker on Mac OS X, in particular to 10.4 ppc systems :-)
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2028 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 06e62c43..6e221af9 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -122,7 +122,7 @@ endif LIBS ?= @LIBS@ LDFLAGS ?= @LDFLAGS@ -linkflags := -L/usr/lib $(sort $(LDFLAGS) $(LIBS)) +linkflags := -L/usr/lib $(LDFLAGS) $(sort $(LIBS)) ifneq ($(linkflags),) PLINKFLAGS := -k"$(linkflags)" endif |