mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 16:23:25 -05:00
- plus: execute "+command" when run with -jX -n
- ellipsis: ellipsis ("...") from variable
- empty: empty command (from variable)
Currently make(1) fails all three tests:
- plus: segmentation fault due to incorrect command list handling
- ellipsis: works in compat mode but fails in job (-jX) mode
- empty:
- compat mode: prints error message
- job mode: works but prints empty string
13 lines
188 B
Makefile
13 lines
188 B
Makefile
# $FreeBSD$
|
|
|
|
EMPTY=
|
|
|
|
check-empty:
|
|
@${MAKE} -f ${MAKEFILE} do-$@
|
|
@${MAKE} -f ${MAKEFILE} -j2 do-$@
|
|
@${MAKE} -f ${MAKEFILE} -j2 -B do-$@
|
|
|
|
do-check-empty:
|
|
${EMPTY}
|
|
@${EMPTY}
|
|
@-${EMPTY}
|