X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=t%2Fnostdinc.sh;h=812c6be221d422f84ec62dbf9aaed9f9c27f0a05;hb=b21d68690612214d8edd810acf11880c3c0ad586;hp=8b780a6e5cdc6e2a658441ab503fbc8c6230f56d;hpb=326ff45b8da46ab409b4a69d4861ad3211f0e132;p=platform%2Fupstream%2Fautomake.git diff --git a/t/nostdinc.sh b/t/nostdinc.sh index 8b780a6..812c6be 100755 --- a/t/nostdinc.sh +++ b/t/nostdinc.sh @@ -21,7 +21,7 @@ # just skip the rest of the test if configure fails to find a working C # compiler. -. ./defs || Exit 1 +. ./defs || exit 1 cat >> configure.ac << 'END' AC_PROG_CC @@ -37,7 +37,7 @@ END $ACLOCAL $AUTOMAKE -$EGREP '(-I *\.|-I.*srcdir|am__isrc)' Makefile.in && Exit 1 +$EGREP '(-I *\.|-I.*srcdir|am__isrc)' Makefile.in && exit 1 # We'll test the fully-processed Makefile too. $AUTOCONF @@ -45,12 +45,12 @@ $AUTOCONF # Test with $builddir != $srcdir mkdir build cd build -../configure || Exit $? -$EGREP '.*-I *(\.|\$.srcdir.)' Makefile && Exit 1 +../configure || exit $? +$EGREP '.*-I *(\.|\$.srcdir.)' Makefile && exit 1 # Test with $builddir = $srcdir cd .. -./configure || Exit $? -$EGREP '.*-I *(\.|\$.srcdir.)' Makefile && Exit 1 +./configure || exit $? +$EGREP '.*-I *(\.|\$.srcdir.)' Makefile && exit 1 -Exit 0 +exit 0