diff options
-rw-r--r-- | gnu/packages/commencement.scm | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index b31f976900..62bb2d6c96 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -2464,27 +2464,27 @@ exec " gcc "/bin/" program (source (bootstrap-origin (package-source perl))) (inputs (%boot0-inputs)) (arguments - `(#:implicit-inputs? #f - #:guile ,%bootstrap-guile - #:validate-runpath? #f - - ;; At the very least, this must not depend on GCC & co. - #:disallowed-references ,(list %bootstrap-binutils) - - ,@(substitute-keyword-arguments (package-arguments perl) - ((#:phases phases) - `(modify-phases ,phases - ;; Pthread support is missing in the bootstrap compiler - ;; (broken spec file), so disable it. - (add-before 'configure 'disable-pthreads - (lambda _ - (substitute* "Configure" - (("^libswanted=(.*)pthread" _ before) - (string-append "libswanted=" before))))))) - ;; Do not configure with '-Dusethreads' since pthread - ;; support is missing. - ((#:configure-flags configure-flags) - `(delete "-Dusethreads" ,configure-flags))))))) + (append (list #:implicit-inputs? #f + #:guile %bootstrap-guile + #:validate-runpath? #f + + ;; At the very least, this must not depend on GCC & co. + #:disallowed-references (list %bootstrap-binutils)) + (substitute-keyword-arguments (package-arguments perl) + ((#:phases phases) + #~(modify-phases #$phases + ;; Pthread support is missing in the bootstrap compiler + ;; (broken spec file), so disable it. + (add-before 'configure 'disable-pthreads + (lambda _ + (substitute* "Configure" + (("^libswanted=(.*)pthread" _ before) + (string-append "libswanted=" before))))))) + ;; Do not configure with '-Dusethreads' since pthread + ;; support is missing. + ((#:configure-flags configure-flags) + #~(delete "-Dusethreads" + #$configure-flags))))))) (define m4-boot0 (package |