Lines Matching +full:set +full:- +full:env
1 # $NetBSD: opt-keep-going-indirect.mk,v 1.3 2024/04/02 15:05:15 rillig Exp $
3 # Tests for the -k command line option, which stops building a target as soon
8 # In 1993, the exit status for the option '-k' was always 0, even if a
37 # jobs mode. As of 2022-02-12, compat mode outputs '(continuing)' while
46 # The 'set +e' was necessary in 2003, when the shell was run with '-e' by
48 # The 'env -i' prevents that the environment variable MAKEFLAGS is passed down
52 @set +e; env -i "PATH=$$PATH" ${MAKE} -r -f ${MAKEFILE} -k direct; echo "exited $$?"
56 @set +e; env -i "PATH=$$PATH" ${MAKE} -r -f ${MAKEFILE} -k direct -j1; echo "exited $$?"
60 @set +e; env -i "PATH=$$PATH" ${MAKE} -r -f ${MAKEFILE} -k indirect; echo "exited $$?"
64 @set +e; env -i "PATH=$$PATH" ${MAKE} -r -f ${MAKEFILE} -k indirect -j1; echo "exited $$?"