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.
REL7_1_STABLE
Tom Lane 25 years ago
parent 1a9840cd63
commit 5b4045d5d6
  1. 2
      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

Loading…
Cancel
Save