summaryrefslogtreecommitdiff
path: root/src/Makefile.shlib
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2000-11-09 04:17:53 +0000
committerBruce Momjian <bruce@momjian.us>2000-11-09 04:17:53 +0000
commita0951eec081bc34a30d069910c0a2ceb6515042a (patch)
treedc6342f75ed13b2154a9afb95310d9055f9e3b17 /src/Makefile.shlib
parent372e598c44a9f26cd30bbf96896813d0ef3557b2 (diff)
downloadpostgresql-a0951eec081bc34a30d069910c0a2ceb6515042a.tar.gz
Please apply this patch to current, to fix a problem with runcheck,
that installs into a different path than is configured. With this applied both postmaster and the shared libs are location independent for AIX 4.2 and up. Thanks Andreas
Diffstat (limited to 'src/Makefile.shlib')
-rw-r--r--src/Makefile.shlib6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile.shlib b/src/Makefile.shlib
index e0412cb162..cb51484fae 100644
--- a/src/Makefile.shlib
+++ b/src/Makefile.shlib
@@ -6,7 +6,7 @@
# Copyright (c) 1998, Regents of the University of California
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.33 2000/11/08 20:18:49 petere Exp $
+# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.34 2000/11/09 04:17:53 momjian Exp $
#
#-------------------------------------------------------------------------
@@ -278,8 +278,8 @@ else # PORTNAME == aix
# AIX case
$(shlib): lib$(NAME).a
- $(MKLDEXPORT) lib$(NAME).a $(libdir) > lib$(NAME)$(EXPSUFF)
- $(LD) -H512 -bM:SRE -bI:$(top_builddir)/src/backend/$(POSTGRES_IMP) -bE:lib$(NAME)$(EXPSUFF) -o $@ $< $(LDFLAGS) $(SHLIB_LINK)
+ $(MKLDEXPORT) lib$(NAME).a > lib$(NAME)$(EXPSUFF)
+ $(CC) -Wl,-H512 -Wl,-bM:SRE -Wl,-bI:$(top_builddir)/src/backend/$(POSTGRES_IMP) -Wl,-bE:lib$(NAME)$(EXPSUFF) -o $@ $< $(LDFLAGS) $(SHLIB_LINK)
endif # PORTNAME == aix