diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-11-09 04:17:53 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-11-09 04:17:53 +0000 |
commit | a0951eec081bc34a30d069910c0a2ceb6515042a (patch) | |
tree | dc6342f75ed13b2154a9afb95310d9055f9e3b17 /src/Makefile.shlib | |
parent | 372e598c44a9f26cd30bbf96896813d0ef3557b2 (diff) | |
download | postgresql-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.shlib | 6 |
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 |