* tests/cscope.tap: Don't use 'using_gmake', simply assume we are
indeed using GNU make.
* tests/yacc-nodist.test: Likewise.
* tests/yacc-bison-skeleton.test: Don't use "make -e".
* tests/yacc-bison-skeleton-cxx.test: Likewise.
"$1"/configure EMACS=no --with-lispdir=/who/cares
}
-if using_gmake; then
-
- cd "$ocwd"
- pfx="relative VPATH"
- mkdir build
- cd build
- my_configure ..
- test_cscope
- test_cleanup
-
- cd "$ocwd"
- pfx="absolute VPATH"
- mkdir build2
- cd build2
- my_configure "$ocwd"
- test_cscope
- test_cleanup
-
-else
-
- skip_row_ 12 -r "cscope in VPATH required GNU make"
+cd "$ocwd"
+pfx="relative VPATH"
+mkdir build
+cd build
+my_configure ..
+test_cscope
+test_cleanup
-fi
+cd "$ocwd"
+pfx="absolute VPATH"
+mkdir build2
+cd build2
+my_configure "$ocwd"
+test_cscope
+test_cleanup
cd "$ocwd"
pfx="in-tree build"
# Check that distribution is self-contained, and do not require
# bison to be built.
-env YACC=false DISTCHECK_CONFIGURE_FLAGS='YACC=false' $MAKE -e distcheck
+$MAKE distcheck YACC=false DISTCHECK_CONFIGURE_FLAGS='YACC=false'
:
# Check that distribution is self-contained, and do not require
# bison to be built.
-env YACC=false DISTCHECK_CONFIGURE_FLAGS='YACC=false' $MAKE -e distcheck
+$MAKE YACC=false DISTCHECK_CONFIGURE_FLAGS='YACC=false' distcheck
:
$MAKE test-dist
# But the distribution must work correctly, assuming the user has
-# the proper tools to process yacc files. Do this check only with
-# GNU make, to avoid tripping on automake bug#7884.
-if using_gmake; then $MAKE distcheck; fi
+# the proper tools to process yacc files.
+$MAKE distcheck
: