X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=t%2Fnodep2.sh;h=13d1174651211af1de10f6ef07e93834ebbee18d;hb=b21d68690612214d8edd810acf11880c3c0ad586;hp=cc80058a54ff1d67d37bbde7325e60dde67f1ea2;hpb=75b91149b81b38570282008c926eba9eb99b6a29;p=platform%2Fupstream%2Fautomake.git diff --git a/t/nodep2.sh b/t/nodep2.sh index cc80058..13d1174 100755 --- a/t/nodep2.sh +++ b/t/nodep2.sh @@ -16,7 +16,7 @@ # Another test to make sure no-dependencies option does the right thing. -. ./defs || Exit 1 +. ./defs || exit 1 cat > Makefile.am << 'END' bin_PROGRAMS = foo @@ -30,12 +30,7 @@ AC_CONFIG_FILES([Makefile]) AC_PROG_CC AC_PROG_CXX AC_PROG_OBJC -# FIXME: this is to cater to older autoconf; remove this once we -# FIXME: automake requires Autoconf 2.65 or later. -m4_ifdef([AC_PROG_OBJCXX], [AC_PROG_OBJCXX], [ - AC_SUBST([OBJCXX], [whocares]) - AM_CONDITIONAL([am__fastdepOBJCXX], [whocares]) -]) +AC_PROG_OBJCXX AM_PROG_AS AM_PROG_GCJ AM_PROG_UPC @@ -45,6 +40,6 @@ END $ACLOCAL $AUTOMAKE -grep DEPMODE Makefile.in && Exit 1 +grep DEPMODE Makefile.in && exit 1 :