Commit 733abd29 authored by Tom Lane's avatar Tom Lane

Fix another erroneous =-for-:= substitution.

parent 153affd0
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
# Copyright (c) 1998, Regents of the University of California # Copyright (c) 1998, Regents of the University of California
# #
# IDENTIFICATION # 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) ...@@ -171,7 +171,7 @@ ifeq ($(PORTNAME), hpux)
# ld can find the same libraries gcc does. Make sure it goes after any # ld can find the same libraries gcc does. Make sure it goes after any
# -L switches provided explicitly. # -L switches provided explicitly.
ifeq ($(GCC), yes) 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
endif endif
# do this last so above filtering doesn't pull out -L switches in LDFLAGS # do this last so above filtering doesn't pull out -L switches in LDFLAGS
......
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