From f3ee5ab37266f61efb029365cf8689191ed2f756 Mon Sep 17 00:00:00 2001 From: frsyuki Date: Thu, 7 Oct 2010 06:28:12 +0900 Subject: [PATCH] cpp: fixes ./bootstrap to surely run ./preprocess --- cpp/bootstrap | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cpp/bootstrap b/cpp/bootstrap index 7f3a182a..1ff6b76e 100755 --- a/cpp/bootstrap +++ b/cpp/bootstrap @@ -38,7 +38,8 @@ test -f ChangeLog || touch ChangeLog test -f NEWS || touch NEWS test -f README || cp -f README.md README -if test ! ./preprocess; then +./preprocess +if [ $? -ne 0 ]; then exit 1 fi