aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1997-05-16 01:09:39 +0000
committerMarc G. Fournier <scrappy@hub.org>1997-05-16 01:09:39 +0000
commit718adf8bf7e8c7230da17acb95dfcb2d7eadae98 (patch)
treea50e53321a7f7f0d897de9cd532556f772639a5d
parentcc349d2c878a318769b0bc13d028c2e285fc83b5 (diff)
downloadpostgresql-718adf8bf7e8c7230da17acb95dfcb2d7eadae98.tar.gz
postgresql-718adf8bf7e8c7230da17acb95dfcb2d7eadae98.zip
Have Make process exit if lextest fails
-rw-r--r--src/lextest/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lextest/Makefile b/src/lextest/Makefile
index e034e97ece3..f95b8aeb5fc 100644
--- a/src/lextest/Makefile
+++ b/src/lextest/Makefile
@@ -13,7 +13,7 @@ lextest: lextest.c scan.l
$(CC) -c lex.yy.c
$(CC) -c lextest.c
$(CC) -o lextest lex.yy.o lextest.o
- @echo "If this fails, flex is broken" | lextest || echo "You have a buggy version of flex. Read INSTALL and search for flex for a fix."
+ @echo "If this fails, flex is broken" | lextest || echo "You have a buggy version of flex. Read INSTALL and search for flex for a fix.";exit
clean:
rm -f lextest lex.yy.c lex.yy.o lextest.o