diff options
author | Peter Eisentraut | 2000-10-31 14:37:25 +0000 |
---|---|---|
committer | Peter Eisentraut | 2000-10-31 14:37:25 +0000 |
commit | 9cbcbf0fb36660a096431f348895567f80327faa (patch) | |
tree | dc83b15f0fd2b957eb72d7b4b0805ab2abed1aff /src/interfaces/libpgtcl/Makefile | |
parent | 44954fae084339cedfdcfe88628e4cecd437cd39 (diff) |
Use $(filter ...), not $(findstring ...).
Diffstat (limited to 'src/interfaces/libpgtcl/Makefile')
-rw-r--r-- | src/interfaces/libpgtcl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpgtcl/Makefile b/src/interfaces/libpgtcl/Makefile index 95894cc65d3..eebff49b728 100644 --- a/src/interfaces/libpgtcl/Makefile +++ b/src/interfaces/libpgtcl/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile,v 1.23 2000/10/20 21:04:10 petere Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile,v 1.24 2000/10/31 14:37:25 petere Exp $ # #------------------------------------------------------------------------- @@ -25,7 +25,7 @@ SHLIB_LINK+= $(libpq) # If crypt is a separate library, rather than part of libc, it may need # to be referenced separately to keep (broken) linkers happy. (This is # braindead; users of libpq should not need to know what it depends on.) -SHLIB_LINK+= $(findstring -lcrypt,$(LIBS)) +SHLIB_LINK+= $(filter -lcrypt, $(LIBS)) all: submake all-lib |