diff options
Diffstat (limited to 'gnu/packages/assembly.scm')
-rw-r--r-- | gnu/packages/assembly.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm index dbed33bb3d..c8576930ff 100644 --- a/gnu/packages/assembly.scm +++ b/gnu/packages/assembly.scm @@ -7,7 +7,7 @@ ;;; Copyright © 2019 Guy Fleury Iteriteka <[email protected]> ;;; Copyright © 2019 Andy Tai <[email protected]> ;;; Copyright © 2020 Jakub Kądziołka <[email protected]> -;;; Copyright © 2020 Christopher Lemmer Webber <[email protected]> +;;; Copyright © 2020 Christine Lemmer-Webber <[email protected]> ;;; Copyright © 2020 B. Wilson <[email protected]> ;;; ;;; This file is part of GNU Guix. @@ -228,7 +228,7 @@ It has macro abilities and focuses on operating system portability.") (build-system gnu-build-system) (arguments `(#:parallel-build? #f ; They use submakes wrong - #:make-flags (list "CC=gcc" + #:make-flags (list ,(string-append "CC=" (cc-for-target)) (string-append "PREFIX=" (assoc-ref %outputs "out"))) #:system "i686-linux" ; Standalone ld86 had problems otherwise |