Make it entirely possible for PORTNAME to be undefined

This commit is contained in:
Marc G. Fournier 1997-12-17 04:03:30 +00:00
parent 6bdcad66e4
commit ceabf8cab9
1 changed files with 4 additions and 2 deletions

View File

@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.27 1997/10/30 04:46:39 momjian Exp $
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.28 1997/12/17 04:03:30 scrappy Exp $
#
# NOTES
# Essentially all Postgres make files include this file and use the
@ -286,4 +286,6 @@ ifdef PROFILE
endif
# Globally pass PORTNAME
CFLAGS+= -D$(PORTNAME)
ifdef PORTNAME
CFLAGS+= -D$(PORTNAME)
endif