提交 ad43a721 编写于 作者: B Bruce Momjian

Fix for test 0 error.

上级 d404f100
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
# #
# #
# IDENTIFICATION # IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.20 1997/12/02 03:19:42 scrappy Exp $ # $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.21 1997/12/22 05:56:43 momjian Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
...@@ -24,7 +24,7 @@ ETAGS = @etags@ ...@@ -24,7 +24,7 @@ ETAGS = @etags@
XARGS = @xargs@ XARGS = @xargs@
all: all:
@if test $(PORTNAME) = UNDEFINED; then \ @if test "$(PORTNAME)" = UNDEFINED; then \
echo You must set the PORTNAME value in Makefile.global before \ echo You must set the PORTNAME value in Makefile.global before \
you can build Postgres. ;\ you can build Postgres. ;\
false ;\ false ;\
...@@ -51,7 +51,7 @@ endif ...@@ -51,7 +51,7 @@ endif
fi fi
install: install:
@if test $(PORTNAME) = UNDEFINED; then \ @if test "$(PORTNAME)" = UNDEFINED; then \
echo You must set the PORTNAME value in Makefile.global before \ echo You must set the PORTNAME value in Makefile.global before \
you can build Postgres. ;\ you can build Postgres. ;\
false ;\ false ;\
...@@ -68,7 +68,7 @@ endif ...@@ -68,7 +68,7 @@ endif
cat ../register.txt cat ../register.txt
clean: clean:
@if test $(PORTNAME) = UNDEFINED; then \ @if test "$(PORTNAME)" = UNDEFINED; then \
echo You must set the PORTNAME value in Makefile.global before \ echo You must set the PORTNAME value in Makefile.global before \
you can build Postgres. ;\ you can build Postgres. ;\
false ;\ false ;\
...@@ -101,7 +101,7 @@ distclean: clean ...@@ -101,7 +101,7 @@ distclean: clean
.DEFAULT: .DEFAULT:
@if test $(PORTNAME) = UNDEFINED; then \ @if test "$(PORTNAME)" = UNDEFINED; then \
echo You must set the PORTNAME value in Makefile.global before \ echo You must set the PORTNAME value in Makefile.global before \
you can build Postgres. ;\ you can build Postgres. ;\
false ;\ false ;\
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册