Skip to content

Commit 0da293f

Browse files
committed
Fix for using Makefile.custom
Suggested/Submitted by: darcy@druid.druid.com Cleaner Method Submitted by: Bryan Henderson <bryanh@giraffe.netgate.net>
1 parent ba628ef commit 0da293f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/Makefile.global

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.33 1996/09/23 08:37:41 scrappy Exp $
10+
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.34 1996/09/23 08:43:40 scrappy Exp $
1111
#
1212
# NOTES
1313
# This is seen by any Makefiles that include mk/postgres.mk. To
@@ -322,6 +322,7 @@ objdir= obj
322322
# when you upgrade the source) so you have to create at least an
323323
# empty one. Run "touch Makefile.custom" in the source directory
324324
# to create an empty customization file. Make your local changes.
325-
326-
# include $(MKDIR)/../Makefile.custom
325+
ifneq ($(wildcard $(MKDIR)/../Makefile.custom), )
326+
include $(MKDIR)/../Makefile.custom
327+
endif
327328

0 commit comments

Comments
 (0)