diff options
author | Bryan Henderson <bryanh@giraffe.netgate.net> | 1997-01-08 08:30:21 +0000 |
---|---|---|
committer | Bryan Henderson <bryanh@giraffe.netgate.net> | 1997-01-08 08:30:21 +0000 |
commit | 76981276b0642fc3ff661e4278364170746ff87b (patch) | |
tree | bf786a207847e1c685a7e6e5f3d555bbcfdabe21 /src | |
parent | 5aea6a0bca5f15dd9bae762b914f3d405ba3a5fd (diff) | |
download | postgresql-76981276b0642fc3ff661e4278364170746ff87b.tar.gz postgresql-76981276b0642fc3ff661e4278364170746ff87b.zip |
Fix syntax error
Diffstat (limited to 'src')
-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 b39a0a1d076..88865179989 100644 --- a/src/Makefile.global +++ b/src/Makefile.global @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.83 1997/01/06 10:09:04 bryanh Exp $ +# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.84 1997/01/08 08:30:21 bryanh Exp $ # # NOTES # Essentially all Postgres make files include this file and use the @@ -706,7 +706,7 @@ endif # This goes here so that customization in Makefile.custom is effective ############################################################################## -ifeq($(CUSTOM_INSTALL),) +ifneq ($(CUSTOM_INSTALL),) INSTALL= $(CUSTOM_INSTALL) endif |