diff options
author | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-11-13 11:43:04 +0000 |
---|---|---|
committer | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-11-13 11:43:04 +0000 |
commit | 0cec8fe26c4c76bcc72b78c194a1aa026748c6dc (patch) | |
tree | a6d1b53e7a7eed63763f4557d0bf2c1a26fe3715 | |
parent | b20766ccc4a281f1fc88a03bb4ba25da983e6141 (diff) | |
download | postgresql-0cec8fe26c4c76bcc72b78c194a1aa026748c6dc.tar.gz postgresql-0cec8fe26c4c76bcc72b78c194a1aa026748c6dc.zip |
Fix syntax error introduced in last update.
-rw-r--r-- | src/Makefile.global | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.global b/src/Makefile.global index 2972c03e5ab..0b5464b65d9 100644 --- a/src/Makefile.global +++ b/src/Makefile.global @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.65 1996/11/13 10:35:00 bryanh Exp $ +# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.66 1996/11/13 11:43:04 bryanh Exp $ # # NOTES # Essentially all Postgres make files include this file and use the @@ -260,7 +260,7 @@ BACKSLASH_C= # This includes your local customizations if Makefile.custom exists # in the source directory. This file doesn't exist in the original # distribution so that it doesn't get overwritten when you upgrade. -ifneq ($(wildcard $(SRCDIR/Makefile.custom), ) +ifneq ($(wildcard $(SRCDIR)/Makefile.custom), ) include $(SRCDIR)/Makefile.custom endif |