/src/usr.bin/make/unit-tests/ |
export-env.exp | 3 UT_ENV=not-exported 4 UT_EXP=not-exported 8 UT_ENV=exported 9 UT_EXP=exported
|
varname-dot-make-exported.mk | 1 # $NetBSD: varname-dot-make-exported.mk,v 1.2 2020/08/16 14:25:16 rillig Exp $ 3 # Tests for the special .MAKE.EXPORTED variable.
|
export-env.mk | 9 UT_ENV= exported 11 UT_ENV= not-exported 15 export UT_EXP=exported 16 UT_EXP=not-exported
|
export-variants.mk | 3 # Test whether exported variables apply to each variant of running 12 . warning At this point, no variable should be exported. 16 . warning At this point, no variable should be exported. 20 . warning At this point, no variable should be exported. 28 . warning At this point, a single variable should be exported. 32 . warning At this point, a single variable should be exported. 36 . warning At this point, a single variable should be exported.
|
opt-x-reduce-exported.mk | 1 # $NetBSD: opt-x-reduce-exported.mk,v 1.3 2022/05/08 07:27:50 rillig Exp $ 4 # command line from being exported to the environment of child commands. 6 # The variable 'BEFORE' is exported, the variable 'AFTER' isn't.
|
export-all.exp | 1 UT_ALL=even this gets exported
|
directive-export-impl.mk | 5 # or marking them for being re-exported. 11 # VarFlags.exported (per variable) 25 # export the variable but only marks it as VarFlags.exported and 27 # .MAKE.EXPORTED. That's all for now. 30 # The following expression has both flags 'exported' and 'reexport' set. 36 # variables exported. Since this variable has both of the above-mentioned 37 # flags set, it is actually exported to the environment. The variable flags 40 # variable will be exported anew for each ':sh' modifier, ':!...!' modifier, 46 # The following expression still has 'exported' and 'reexport' set. 48 # These flags means that the variable is still marked as being re-exported [all...] |
make-exported.mk | 1 # $NetBSD: make-exported.mk,v 1.7 2022/09/09 18:36:15 sjg Exp $ 4 # directive and the .MAKE.EXPORTED variable. This leads to non-obvious 7 -env= make-exported-value-env 8 -literal= make-exported-value-literal 15 .MAKE.EXPORTED= -env 17 # Before 2020-10-03, if the value of .MAKE.EXPORTED started with "-literal", 20 # Since 2020-10-03, the "variable" named "-literal" is not exported anymore, 22 .MAKE.EXPORTED= -literal UT_VAR 25 @env | sort | ${EGREP} '^UT_|make-exported-value' || true
|
directive-export.mk | 17 # A variable is exported using the .export directive. 24 # Undefining a variable that has been exported implicitly removes it from 32 # argument exported all global variables. This case could be triggered 43 # or for the ':sh' modifier, all variables that were marked for being exported 44 # are expanded and then exported. If expanding such a variable requires 45 # running a child command, the marked-as-exported variables would need to be 46 # exported first, ending in an endless loop. To avoid this endless loop, 51 _!= :;: # Force the variable to be actually exported.
|
directive-unexport.mk | 17 # Show the exported variables and their values. 21 .info ${.MAKE.EXPORTED} 23 # XXX: Now try to unexport all of them. The variables are still exported 24 # but not mentioned in .MAKE.EXPORTED anymore. 32 .info ${.MAKE.EXPORTED}
|
unexport-env.mk | 3 # pick up a bunch of exported vars
|
unexport.mk | 3 # pick up a bunch of exported vars
|
export-all.mk | 24 UT_ALL= even this gets exported
|
directive-undef.exp | 4 make: directive-undef.mk:105: warning: UT_EXPORTED is still listed in .MAKE.EXPORTED even though spaceit is not exported anymore.
|
directive-undef.mk | 91 UT_EXPORTED= exported-value 93 .if ${:!echo "\${UT_EXPORTED:-not-exported}"!} != "exported-value" 96 .if !${.MAKE.EXPORTED:MUT_EXPORTED} 99 .undef UT_EXPORTED # XXX: does not update .MAKE.EXPORTED 100 .if ${:!echo "\${UT_EXPORTED:-not-exported}"!} != "not-exported" 103 .if ${.MAKE.EXPORTED:MUT_EXPORTED} 104 # expect+1: warning: UT_EXPORTED is still listed in .MAKE.EXPORTED even though spaceit is not exported anymore [all...] |
directive-export-gmake.mk | 9 export VAR=exported 14 # Ensure that the name-value pair is actually exported. 15 .if ${:!echo "\$VAR"!} != "exported" 21 export VAR=exported VAR2=exported-as-well 22 .if ${:!echo "\$VAR"!} != "exported VAR2=exported-as-well" 48 # The right-hand side of the exported variable is expanded exactly once. 99 # the exported variable thus starts with a '$', and that name may be filtered
|
directive-export-literal.mk | 12 # After a variable whose value does not contain a '$' is exported, a following 25 # After an .export, an .unexport resets the variable's exported state,
|
deptgt-notparallel.mk | 6 # exported to submakes.
|
export.mk | 32 # This is exported (see the .rawout file) but not displayed since the dash 41 .MAKE.EXPORTED+= UT_ZOO UT_TEST
|
varname-dot-makeflags.mk | 28 # when parsing the makefiles. This is different from exported variables,
|
varmisc.mk | 124 # The appended value is not exported automatically. 125 # When a variable is exported, the exported value is taken at the time of the
|
varmod-loop.mk | 162 # target in the cmdline scope, that same variable was exported to the 177 # variable must be marked as exported as well, which it wasn't before. 187 # had to be defined and exported, something that is far from obvious. To
|
/src/sys/dev/microcode/aic7xxx/ |
aicasm_symbol.h | 103 int exported; member in struct:label_info
|
/src/usr.bin/make/ |
var.c | 203 * The variable is exported to the environment, to be used by child 206 bool exported:1; member in struct:Var 209 * At the point where this variable was exported, it contained an 211 * process is started, it needs to be actually exported, resolving 231 * Unexport all globals previously exported, but keep the environment 236 * Unexport all globals previously exported and clear the environment 432 var->exported = false; 609 if (v->exported) 611 if (strcmp(v->name.str, ".MAKE.EXPORTED") == 0) 704 if (v->exported && !v->reexport [all...] |
/src/sys/external/isc/libsodium/dist/m4/ |
lt~obsolete.m4 | 17 # exported API, or moved to Autoconf or Automake where they belong.
|