From: Tom Lane Date: Sat, 24 Mar 2001 06:17:41 +0000 (+0000) Subject: Hadn't built on a PARISC 1.1 box in a long time ... but when I did, X-Git-Tag: REL7_1~108 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5b4045d5d6e5180d6600b89a165fc15c91c2d746;p=postgresql 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. --- diff --git a/src/makefiles/Makefile.hpux b/src/makefiles/Makefile.hpux index b6e141893e..1ed5130af0 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