aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2007-02-11 19:31:45 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2007-02-11 19:31:45 +0000
commit733abd298781d604660bc316a845290991774588 (patch)
tree69cd6194fd8dd0016770a7ad293402646e74bc3a
parent153affd0584ed5b3b2df0dbc5b0174e91e0994a4 (diff)
downloadpostgresql-733abd298781d604660bc316a845290991774588.tar.gz
postgresql-733abd298781d604660bc316a845290991774588.zip
Fix another erroneous =-for-:= substitution.
-rw-r--r--src/Makefile.shlib4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.shlib b/src/Makefile.shlib
index 2cb84c940d0..3419245d587 100644
--- a/src/Makefile.shlib
+++ b/src/Makefile.shlib
@@ -6,7 +6,7 @@
# Copyright (c) 1998, Regents of the University of California
#
# IDENTIFICATION
-# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.107 2007/02/09 15:55:57 petere Exp $
+# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.108 2007/02/11 19:31:45 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -171,7 +171,7 @@ ifeq ($(PORTNAME), hpux)
# ld can find the same libraries gcc does. Make sure it goes after any
# -L switches provided explicitly.
ifeq ($(GCC), yes)
- SHLIB_LINK = $(filter -L%, $(SHLIB_LINK)) -L/usr/local/lib $(filter-out -L%, $(SHLIB_LINK))
+ SHLIB_LINK := $(filter -L%, $(SHLIB_LINK)) -L/usr/local/lib $(filter-out -L%, $(SHLIB_LINK))
endif
endif
# do this last so above filtering doesn't pull out -L switches in LDFLAGS