diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-05-07 01:05:11 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-05-07 01:05:11 +0000 |
commit | 88d94a11bb2b0d3dac95325d8d6056e4bac8b4b8 (patch) | |
tree | 292a9da94deb62311051fa7475f530c2b05999d4 /src | |
parent | 5ff2838c57926e534b16b075d9e90816e8dcb77f (diff) | |
download | postgresql-88d94a11bb2b0d3dac95325d8d6056e4bac8b4b8.tar.gz postgresql-88d94a11bb2b0d3dac95325d8d6056e4bac8b4b8.zip |
Use $(LIBS:-lpgport=) rather than $(patsubst -lpgport,, $(LIBS)), for consistency.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/libpq/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/Makefile b/src/interfaces/libpq/Makefile index 2a1f76e7122..1fa17b461b7 100644 --- a/src/interfaces/libpq/Makefile +++ b/src/interfaces/libpq/Makefile @@ -5,7 +5,7 @@ # Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.144 2006/04/28 02:53:20 tgl Exp $ +# $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.145 2006/05/07 01:05:11 momjian Exp $ # #------------------------------------------------------------------------- @@ -29,7 +29,7 @@ endif # object files to use the same compile flags as libpq. If we used # the object files from libpgport, this would not be true on all # platforms. -LIBS := $(patsubst -lpgport,, $(LIBS)) +LIBS := $(LIBS:-lpgport=) OBJS= fe-auth.o fe-connect.o fe-exec.o fe-misc.o fe-print.o fe-lobj.o \ fe-protocol2.o fe-protocol3.o pqexpbuffer.o pqsignal.o fe-secure.o \ |