aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-08-27 06:52:34 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-08-27 06:52:34 +0000
commit672aec6ce369d3799b4c26f984bb030a357a2b35 (patch)
tree171cd8d653cac7d2770a3f47bf0e1d41cb41fa62
parent1da12ffb120cc414eddde459ac4aeb05b7bc07b1 (diff)
downloadpostgresql-672aec6ce369d3799b4c26f984bb030a357a2b35.tar.gz
postgresql-672aec6ce369d3799b4c26f984bb030a357a2b35.zip
Reduce -DPORTNAME_$(PORTNAME) down to just -D$(PORTNAME)
-rw-r--r--src/Makefile.global4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.global b/src/Makefile.global
index 55ffabe16f1..cbdfac42afc 100644
--- a/src/Makefile.global
+++ b/src/Makefile.global
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.25 1996/08/21 04:08:17 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.26 1996/08/27 06:52:34 scrappy Exp $
#
# NOTES
# This is seen by any Makefiles that include mk/postgres.mk. To
@@ -274,7 +274,7 @@ LDFLAGS+= $(PROFILE)
endif
# Globally pass PORTNAME
-CFLAGS+= -DPORTNAME_$(PORTNAME)
+CFLAGS+= -DPORTNAME_$(PORTNAME) -D$(PORTNAME)
CFLAGS += -I../../backend/port/$(PORTNAME)
# Globally pass the default TCP port for postmaster(1).