Changeset 2539 in kBuild
- Timestamp:
- Aug 2, 2011 8:01:33 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/kbuild.c
r2435 r2539 2110 2110 pVar = kbuild_get_recursive_variable(pszSrcVar); 2111 2111 do_variable_definition_2(NILF, pszDstVar, pVar->value, pVar->value_length, 2112 !pVar->recursive, 0, o_ file, f_simple, 0 /* !target_var */);2112 !pVar->recursive, 0, o_local, f_simple, 0 /* !target_var */); 2113 2113 2114 2114 memcpy(pszSrc, "_OUTPUT", sizeof("_OUTPUT")); … … 2116 2116 pVar = kbuild_get_recursive_variable(pszSrcVar); 2117 2117 pOutput = do_variable_definition_2(NILF, pszDstVar, pVar->value, pVar->value_length, 2118 !pVar->recursive, 0, o_ file, f_simple, 0 /* !target_var */);2118 !pVar->recursive, 0, o_local, f_simple, 0 /* !target_var */); 2119 2119 2120 2120 memcpy(pszSrc, "_OUTPUT_MAYBE", sizeof("_OUTPUT_MAYBE")); … … 2123 2123 if (pVar) 2124 2124 pOutputMaybe = do_variable_definition_2(NILF, pszDstVar, pVar->value, pVar->value_length, 2125 !pVar->recursive, 0, o_ file, f_simple, 0 /* !target_var */);2125 !pVar->recursive, 0, o_local, f_simple, 0 /* !target_var */); 2126 2126 else 2127 pOutputMaybe = do_variable_definition_2(NILF, pszDstVar, "", 0, 1, 0, o_ file, f_simple, 0 /* !target_var */);2127 pOutputMaybe = do_variable_definition_2(NILF, pszDstVar, "", 0, 1, 0, o_local, f_simple, 0 /* !target_var */); 2128 2128 2129 2129 memcpy(pszSrc, "_DEPEND", sizeof("_DEPEND")); … … 2138 2138 do_variable_definition_2(NILF, pszDstVar, pszVal, pVar->value_length + 1 + pDeps->value_length + 1 + pSource->value_length, 2139 2139 !pVar->recursive && !pDeps->recursive && !pSource->recursive, 2140 pszVal, o_ file, f_simple, 0 /* !target_var */);2140 pszVal, o_local, f_simple, 0 /* !target_var */); 2141 2141 2142 2142 memcpy(pszSrc, "_DEPORD", sizeof("_DEPORD")); … … 2152 2152 pVar->value_length + 1 + pDirDep->value_length + 1 + pOrderDeps->value_length, 2153 2153 !pVar->recursive && !pDirDep->recursive && !pOrderDeps->recursive, 2154 pszVal, o_ file, f_simple, 0 /* !target_var */);2154 pszVal, o_local, f_simple, 0 /* !target_var */); 2155 2155 2156 2156 /*
Note:
See TracChangeset
for help on using the changeset viewer.