[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 1/5] gnu: libxml2: Fixed cross-compilation.
From: |
Ludovic Courtès |
Subject: |
Re: [PATCH 1/5] gnu: libxml2: Fixed cross-compilation. |
Date: |
Sat, 14 Dec 2013 18:48:27 +0100 |
User-agent: |
Gnus/5.130007 (Ma Gnus v0.7) Emacs/24.3 (gnu/linux) |
John Darrington <address@hidden> skribis:
> * gnu/packages/xml.scm (libxml2): [(eq? (%current-target-system) #f)] assign
> "cross-libc"
> to the variable glibc
No need to show the condition in the log.
> --- a/gnu/packages/xml.scm
> +++ b/gnu/packages/xml.scm
> @@ -75,7 +75,7 @@ things the parser might find in the XML document (like
> start tags).")
> 'install
> (lambda* (#:key inputs outputs #:allow-other-keys #:rest args)
> (let ((install (assoc-ref %standard-phases 'install))
> - (glibc (assoc-ref inputs "libc"))
> + (glibc (assoc-ref inputs ,(if (%current-target-system)
> "cross-libc" "libc")))
Please wrap lines under 80 chars.
Could you send the updated patch?
Thanks,
Ludo’.
- Re: [PATCH 4/5] gnu: openssl: Fixed cross-compile issues., (continued)
[PATCH 3/5] gnu: tzdata: Added "source" as input., John Darrington, 2013/12/14
[PATCH 5/5] gnu: Changed many "inputs" which should be "native-inputs"., John Darrington, 2013/12/14
Re: [PATCH 1/5] gnu: libxml2: Fixed cross-compilation.,
Ludovic Courtès <=