diff options
author | Tom Lane | 2005-01-06 20:56:50 +0000 |
---|---|---|
committer | Tom Lane | 2005-01-06 20:56:50 +0000 |
commit | df976832af657508cd85140ac8feec6fb63f1412 (patch) | |
tree | bfca5e5860d461908134c280166883e72f821f50 | |
parent | 324fd6d0ed67aea3fe8f22e149f45d6792290149 (diff) |
Revert -Wl, change to Makefile.osf, as the allegedly more standard
syntax apparently does not work for all toolchains on that platform.
Per Honda Shigehiro.
-rw-r--r-- | src/makefiles/Makefile.osf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefiles/Makefile.osf b/src/makefiles/Makefile.osf index 912134ea9a..ebd6c30149 100644 --- a/src/makefiles/Makefile.osf +++ b/src/makefiles/Makefile.osf @@ -1,7 +1,7 @@ AROPT = crs DLSUFFIX = .so CFLAGS_SL = -rpath = -Wl,-rpath -Wl,$(rpathdir) +rpath = -rpath $(rpathdir) %.so: %.o $(LD) -shared -expect_unresolved '*' -o $@ $< |