John Darrington <j...@darrington.wattle.id.au> 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’.