Skip to content

Commit 733abd2

Browse files
committed
Fix another erroneous =-for-:= substitution.
1 parent 153affd commit 733abd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Makefile.shlib

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Copyright (c) 1998, Regents of the University of California
77
#
88
# IDENTIFICATION
9-
# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.107 2007/02/09 15:55:57 petere Exp $
9+
# $PostgreSQL: pgsql/src/Makefile.shlib,v 1.108 2007/02/11 19:31:45 tgl Exp $
1010
#
1111
#-------------------------------------------------------------------------
1212

@@ -171,7 +171,7 @@ ifeq ($(PORTNAME), hpux)
171171
# ld can find the same libraries gcc does. Make sure it goes after any
172172
# -L switches provided explicitly.
173173
ifeq ($(GCC), yes)
174-
SHLIB_LINK = $(filter -L%, $(SHLIB_LINK)) -L/usr/local/lib $(filter-out -L%, $(SHLIB_LINK))
174+
SHLIB_LINK := $(filter -L%, $(SHLIB_LINK)) -L/usr/local/lib $(filter-out -L%, $(SHLIB_LINK))
175175
endif
176176
endif
177177
# do this last so above filtering doesn't pull out -L switches in LDFLAGS

0 commit comments

Comments
 (0)