blob: 36f4b356ae5390971d496011fbc23db5adc22da4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: make-exported.mk,v 1.1 2020/08/09 12:59:16 rillig Exp $
#
# As of 2020-08-09, the code in Var_Export is shared between the .export
# directive and the .MAKE.EXPORTED variable. This leads to non-obvious
# behavior for certain variable assignments.
-env= make-exported-value
-literal= make-exported-value
UT_VAR= ${UNEXPANDED}
# The following behavior is probably not intended.
.MAKE.EXPORTED= -env # like .export-env
.MAKE.EXPORTED= -literal UT_VAR # like .export-literal PATH
all:
@env | sort | grep -E '^UT_|make-exported-value' || true
|