diff options
author | Cyril Roelandt <tipecaml@gmail.com> | 2013-10-16 03:47:56 +0200 |
---|---|---|
committer | Cyril Roelandt <tipecaml@gmail.com> | 2013-12-15 23:37:22 +0100 |
commit | 503c5f6d5d5b61097731158e70ff598fe42d6345 (patch) | |
tree | 2deeff06b98d271d5b168cf70e1362a6a9037460 /gnu/packages/patches/gobject-introspection-cc.patch | |
parent | 3e778ad3af53e343550f4ec3d0b56f9bfe1fa2e3 (diff) | |
download | guix-503c5f6d5d5b61097731158e70ff598fe42d6345.tar guix-503c5f6d5d5b61097731158e70ff598fe42d6345.tar.gz |
gnu: gobject-introspection: look for 'gcc' when no compiler seems available.
* gnu/packages/patches/gobject-introspection.patch: New file.
Diffstat (limited to 'gnu/packages/patches/gobject-introspection-cc.patch')
-rw-r--r-- | gnu/packages/patches/gobject-introspection-cc.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/packages/patches/gobject-introspection-cc.patch b/gnu/packages/patches/gobject-introspection-cc.patch new file mode 100644 index 0000000000..38b919a746 --- /dev/null +++ b/gnu/packages/patches/gobject-introspection-cc.patch @@ -0,0 +1,14 @@ +--- a/giscanner/sourcescanner.py 2013-12-15 23:03:54.002937000 +0100 ++++ b/giscanner/sourcescanner.py 2013-12-15 23:04:50.322937000 +0100 +@@ -277,6 +277,11 @@ + defines = ['__GI_SCANNER__'] + undefs = [] + cpp_args = os.environ.get('CC', 'cc').split() # support CC="ccache gcc" ++ if (cpp_args == ['cc'] and ++ not any(map(lambda x: os.access(os.path.join(x, 'cc'), os.X_OK), ++ os.environ.get('PATH').split(':')))): ++ cpp_args = ['GUIX_GCC_PATH'] ++ + if 'cl' in cpp_args: + # The Microsoft compiler/preprocessor (cl) does not accept + # source input from stdin (the '-' flag), so we need |