Antero Mejr via Guix-patches via schreef op ma 23-05-2022 om 21:21 [- 0400]: > +      (arguments > +       `(#:tests? #f ;no test suite > +         #:make-flags > +         (list (string-append "CC=" > +                              ,(cc-for-target)) > +               (string-append "DESTDIR=" > +                              (assoc-ref %outputs "out")) > +               "PREFIX=") Guix doesn't use this kind of staging, "PREFIX=" (assoc-ref %outputs "out") should be sufficient, no need for DESTDIR. And the somewhat obscure 'assoc-ref' can be eliminated and the strata made more explicit with gexps: (arguments (list #:tests? #f ;... #:make-flags #~(list (string-append "CC=" #$(cc-for-target)) (string-append "PREFIX=" #$output))))