Commit 5b4045d5 authored by Tom Lane's avatar Tom Lane

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.
parent 1a9840cd
...@@ -16,7 +16,7 @@ endif ...@@ -16,7 +16,7 @@ endif
# add -L command to make that happen. # add -L command to make that happen.
# (CAUTION: you need PHSS_4630 to have a working version of rint() on 9!) # (CAUTION: you need PHSS_4630 to have a working version of rint() on 9!)
ifneq ($(HPUXMATHLIB),) ifneq ($(HPUXMATHLIB),)
LDFLAGS:= -L /lib/pa1.1 $(LDFLAGS) LDFLAGS:= -L/lib/pa1.1 $(LDFLAGS)
endif endif
# Embed 'libdir' as the shared library search path so that the executables # Embed 'libdir' as the shared library search path so that the executables
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment