From: Marc G. Fournier Date: Wed, 17 Dec 1997 04:03:30 +0000 (+0000) Subject: Make it entirely possible for PORTNAME to be undefined X-Git-Tag: REL6_3~515 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ceabf8cab99b8a7aacfdcae0086e40b04dd11eca;p=postgresql Make it entirely possible for PORTNAME to be undefined --- diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 6860d3df05..b743ac688c 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -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