aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1997-05-15 22:55:35 +0000
committerMarc G. Fournier <scrappy@hub.org>1997-05-15 22:55:35 +0000
commitcc349d2c878a318769b0bc13d028c2e285fc83b5 (patch)
treee4de60d927d538f909247d8da9f1936fa1d9d7d4
parente56f1d60a57f5a451d6cddfe408541dc89b0007e (diff)
downloadpostgresql-cc349d2c878a318769b0bc13d028c2e285fc83b5.tar.gz
postgresql-cc349d2c878a318769b0bc13d028c2e285fc83b5.zip
From: Robert E. Bruccoleri <bruc@bms.com>
Fixes: Shared objects are not linked correctly
-rw-r--r--src/makefiles/Makefile.irix53
1 files changed, 2 insertions, 1 deletions
diff --git a/src/makefiles/Makefile.irix5 b/src/makefiles/Makefile.irix5
index e0f705d051e..76ca8bb3a31 100644
--- a/src/makefiles/Makefile.irix5
+++ b/src/makefiles/Makefile.irix5
@@ -3,5 +3,6 @@
RANLIB= touch
%.so: %.o
- $(LD) -G -Bdynamic -o $@ $< $(LDFLAGS)
+ $(LD) -G -Bdynamic -shared -o $@ $< $(
+