cpp: fixes ./bootstrap to surely run ./preprocess

This commit is contained in:
frsyuki
2010-10-07 06:28:12 +09:00
parent aa2a3e5b07
commit f3ee5ab372

View File

@@ -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