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/glib.scm | |
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/glib.scm')
-rw-r--r-- | gnu/packages/glib.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 097a5d0f49..2ba1460444 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -176,7 +176,8 @@ dynamic loading, and an object system.") "/gobject-introspection-" version ".tar.xz")) (sha256 - (base32 "0wvxyvgajmms2bb6k3pf1rdpnd79xdxamykzvxzmcyn1ag9yax9m")))) + (base32 "0wvxyvgajmms2bb6k3pf1rdpnd79xdxamykzvxzmcyn1ag9yax9m")) + (patches (list (search-patch "gobject-introspection-cc.patch"))))) (build-system gnu-build-system) (inputs `(("bison" ,bison) @@ -192,8 +193,8 @@ dynamic loading, and an object system.") 'configure (lambda* (#:key #:allow-other-keys #:rest args) (let ((configure (assoc-ref %standard-phases 'configure))) - ;; giscanner/sourcescanner.py looks for 'CC', let's set it here. - (setenv "CC" "gcc") + (substitute* "giscanner/sourcescanner.py" + (("GUIX_GCC_PATH") (which "gcc"))) (apply configure args))) %standard-phases))) (home-page "https://wiki.gnome.org/GObjectIntrospection") |