aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1997-12-20 04:10:35 +0000
committerMarc G. Fournier <scrappy@hub.org>1997-12-20 04:10:35 +0000
commita38bd20b839aec1633d4327d3e42aaf694ba8ac3 (patch)
treebe1fe23c00dde5bb3fcc83fc6f01334a43df928a
parent0356acebd557b1dd99a2d627851b146ec0a7ce36 (diff)
downloadpostgresql-a38bd20b839aec1633d4327d3e42aaf694ba8ac3.tar.gz
postgresql-a38bd20b839aec1633d4327d3e42aaf694ba8ac3.zip
Fix use of variable in Makefile.in
-rw-r--r--src/backend/port/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/port/Makefile.in b/src/backend/port/Makefile.in
index 096d1f1a4cf..8752512e5bd 100644
--- a/src/backend/port/Makefile.in
+++ b/src/backend/port/Makefile.in
@@ -13,7 +13,7 @@
# be converted to Method 2.
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.9 1997/12/20 00:25:03 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.10 1997/12/20 04:10:35 scrappy Exp $
#
#-------------------------------------------------------------------------
@@ -22,7 +22,7 @@ include ../../Makefile.global
INCLUDE_OPT = -I..
-CFLAGS+= INCLUDE_OPT
+CFLAGS+= ${INCLUDE_OPT}
OBJS = dynloader.o @INET_ATON@ @STRERROR@ @RANDOM@ @SRANDOM@
OBJS+= @GETHOSTNAME@ @GETRUSAGE@ @STRCASECMP@ @STRDUP@