summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2000-10-16 15:00:15 +0000
committerBruce Momjian <bruce@momjian.us>2000-10-16 15:00:15 +0000
commit78d4ca03d4c868afadca2e0ffecf3cf810ecc01f (patch)
treea1390d7a8238179dd77ec4677110fc2ab9da1b9d
parent2c7de17b075baf7be270acf4d541bd4b17047e4c (diff)
Something changed, that now shows that there is a dependency missing in
Makefile .aix Please apply to current, to fix shared lib build from single .o files. Thanks Andreas
-rw-r--r--src/makefiles/Makefile.aix4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefiles/Makefile.aix b/src/makefiles/Makefile.aix
index c40ff6d374c..46bf9dfdabe 100644
--- a/src/makefiles/Makefile.aix
+++ b/src/makefiles/Makefile.aix
@@ -17,9 +17,9 @@ $(POSTGRES_IMP):
$(MKLDEXPORT) postgres $(bindir) > $@
$(CC) -Wl,-bE:$(top_builddir)/src/backend/$@ -o postgres $(OBJS) $(LDFLAGS)
-%$(EXPSUFF):
+%$(EXPSUFF): %.o
$(MKLDEXPORT) $*.o `pwd` > $*$(EXPSUFF)
%$(DLSUFFIX): %.o %$(EXPSUFF)
- @echo Making share library $@ from $*.o, $*$(EXPSUFF), and installed postgres.imp
+ @echo Making shared library $@ from $*.o, $*$(EXPSUFF), and installed postgres.imp
$(CC) -Wl,-H512 -Wl,-bM:SRE -Wl,-bI:$(libdir)/$(POSTGRES_IMP) -Wl,-bE:$*$(EXPSUFF) -o $@ $*.o $(LDFLAGS) $(CFLAGS_SL)