diff options
Diffstat (limited to 'build/spec.c')
-rw-r--r-- | build/spec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/spec.c b/build/spec.c index 4a4a611ec..54625124d 100644 --- a/build/spec.c +++ b/build/spec.c @@ -4,7 +4,7 @@ #include "buildio.h" extern char *specedit; -extern MacroContext globalMacroContext; +extern MacroContext rpmGlobalMacroContext; #define SKIPWHITE(_x) {while(*(_x) && (isspace(*_x) || *(_x) == ',')) (_x)++;} #define SKIPNONWHITE(_x){while(*(_x) &&!(isspace(*_x) || *(_x) == ',')) (_x)++;} @@ -446,7 +446,7 @@ Spec newSpec(void) spec->force = 0; spec->anyarch = 0; - spec->macros = &globalMacroContext; + spec->macros = &rpmGlobalMacroContext; return spec; } |