guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Removing configure flags?


From: Danny Milosavljevic
Subject: Re: Removing configure flags?
Date: Mon, 10 Sep 2018 11:57:29 +0200

Hi,

you can replace the entire "configure" phase.

Search for "replace 'configure" in gnu/packages/*.scm .

You can find the entire block when you search for "--enable-fast-install" 
comments in gnu/packages/*.scm .

It is:

  (arguments
   `(#:phases
       (modify-phases %standard-phases
         (replace 'configure
           (lambda* (#:key inputs outputs (configure-flags '()) 
#:allow-other-keys)
             (apply invoke
                    `("./configure"
                      ,(string-append "--prefix=" out)
                      ,(string-append "--sysconfdir=/etc")
                      ,@configure-flags))))))

Attachment: pgptP8P5tNt_w.pgp
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]