summaryrefslogtreecommitdiff
path: root/builder/builder-options.c
diff options
context:
space:
mode:
Diffstat (limited to 'builder/builder-options.c')
-rw-r--r--builder/builder-options.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/builder/builder-options.c b/builder/builder-options.c
index a4a6868..d52109a 100644
--- a/builder/builder-options.c
+++ b/builder/builder-options.c
@@ -550,6 +550,7 @@ builder_options_get_env (BuilderOptions *self, BuilderContext *context)
GList *l;
int i;
char **envp = NULL;
+ const char *cflags, *cxxflags;
for (l = options; l != NULL; l = l->next)
{
@@ -577,7 +578,17 @@ builder_options_get_env (BuilderOptions *self, BuilderContext *context)
}
}
- return builder_context_extend_env (context, envp);
+ envp = builder_context_extend_env (context, envp);
+
+ cflags = builder_options_get_cflags (self, context);
+ if (cflags)
+ envp = g_environ_setenv (envp, "CFLAGS", cflags, TRUE);
+
+ cxxflags = builder_options_get_cxxflags (self, context);
+ if (cxxflags)
+ envp = g_environ_setenv (envp, "CXXFLAGS", cxxflags, TRUE);
+
+ return envp;
}
char **