diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-03-24 06:17:41 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-03-24 06:17:41 +0000 |
commit | 5b4045d5d6e5180d6600b89a165fc15c91c2d746 (patch) | |
tree | f3e01f59a8192518750df3b67afd86b2fad12351 | |
parent | 1a9840cd63e8223038867774aa1514e7c05d5e39 (diff) | |
download | postgresql-5b4045d5d6e5180d6600b89a165fc15c91c2d746.tar.gz postgresql-5b4045d5d6e5180d6600b89a165fc15c91c2d746.zip |
Hadn't built on a PARISC 1.1 box in a long time ... but when I did,
it turned out that the libpq makefile chokes on '-L /lib/pa1.1'.
Need to remove the space so filter rule works.
-rw-r--r-- | src/makefiles/Makefile.hpux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefiles/Makefile.hpux b/src/makefiles/Makefile.hpux index b6e141893e2..1ed5130af08 100644 --- a/src/makefiles/Makefile.hpux +++ b/src/makefiles/Makefile.hpux @@ -16,7 +16,7 @@ endif # add -L command to make that happen. # (CAUTION: you need PHSS_4630 to have a working version of rint() on 9!) ifneq ($(HPUXMATHLIB),) - LDFLAGS:= -L /lib/pa1.1 $(LDFLAGS) + LDFLAGS:= -L/lib/pa1.1 $(LDFLAGS) endif # Embed 'libdir' as the shared library search path so that the executables |