summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2003-05-29 18:08:42 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2003-05-29 18:08:42 +0000
commit9f47c4cc5c7833608908665c71e3f3dd4acc092f (patch)
treef6b9a4945721035bce8a6d98db175f5082e15581 /src
parent196d0dd10bbe1778eacbea229904f6744bd9c2fb (diff)
AFAICT, none of our shared libraries are anywhere near big enough to
need -fPIC on HPPA. Reduce to -fpic.
Diffstat (limited to 'src')
-rw-r--r--src/makefiles/Makefile.hpux2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefiles/Makefile.hpux b/src/makefiles/Makefile.hpux
index 559b887f263..3f81ce3d918 100644
--- a/src/makefiles/Makefile.hpux
+++ b/src/makefiles/Makefile.hpux
@@ -30,7 +30,7 @@ AROPT = crs
DLSUFFIX = .sl
ifeq ($(GCC), yes)
-CFLAGS_SL = -fPIC
+CFLAGS_SL = -fpic
else
CFLAGS_SL = +z
endif