mirror of
https://github.com/opnsense/src.git
synced 2026-04-05 01:15:30 -04:00
o allow env var MAKE_OBJDIR_CHECK_WRITABLE=no to skip writable checks in InitObjdir. Explicit .OBJDIR target always allows read-only directory. o More code cleanup and refactoring. o More unit tests MFC after: 1 week
30 lines
823 B
Makefile
30 lines
823 B
Makefile
# $NetBSD: cmd-errors.mk,v 1.3 2020/11/09 23:36:34 rillig Exp $
|
|
#
|
|
# Demonstrate how errors in variable expansions affect whether the commands
|
|
# are actually executed.
|
|
|
|
all: undefined unclosed-variable unclosed-modifier unknown-modifier end
|
|
|
|
# Undefined variables are not an error. They expand to empty strings.
|
|
undefined:
|
|
: $@ ${UNDEFINED} eol
|
|
|
|
# XXX: As of 2020-11-01, this command is executed even though it contains
|
|
# parse errors.
|
|
unclosed-variable:
|
|
: $@ ${UNCLOSED
|
|
|
|
# XXX: As of 2020-11-01, this command is executed even though it contains
|
|
# parse errors.
|
|
unclosed-modifier:
|
|
: $@ ${UNCLOSED:
|
|
|
|
# XXX: As of 2020-11-01, this command is executed even though it contains
|
|
# parse errors.
|
|
unknown-modifier:
|
|
: $@ ${UNKNOWN:Z} eol
|
|
|
|
end:
|
|
: $@ eol
|
|
|
|
# XXX: As of 2020-11-02, despite the parse errors, the exit status is 0.
|