diff options
author | Marc G. Fournier | 1997-01-14 06:41:51 +0000 |
---|---|---|
committer | Marc G. Fournier | 1997-01-14 06:41:51 +0000 |
commit | 025f281dca9e36dfe6d6b2fa7287553352f606fd (patch) | |
tree | ebaced3a922d90596530f523f9e65eed8281a1cd /src | |
parent | 2ca05fe45d7fe8e3a18a588d1f1940fc811d37b6 (diff) |
I'm going t take a chance that this was a mis-spelling, since
all the other port related dependencies are ifeq, not ifneq..
If I'm wrong, someone tell me or change it back...
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 950bc5ce9cf..5f577e8a2ac 100644 --- a/src/Makefile.global +++ b/src/Makefile.global @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.89 1997/01/13 17:07:45 momjian Exp $ +# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.90 1997/01/14 06:41:51 scrappy Exp $ # # NOTES # Essentially all Postgres make files include this file and use the @@ -701,7 +701,7 @@ DLSUFFIX= .o endif -ifneq ($(PORTNAME), nextstep) +ifeq ($(PORTNAME), nextstep) LDADD_BE+= -lipc -lm AROPT= rc DLSUFFIX= .o |