guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: packages: 0ad: Tweak the build options.


From: Christopher Baines
Subject: 01/01: gnu: packages: 0ad: Tweak the build options.
Date: Sun, 31 Dec 2017 09:13:11 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit 809b884260b42c56c87c6c2263c5d9209aca86ce
Author: Christopher Baines <address@hidden>
Date:   Sun Dec 31 13:59:12 2017 +0000

    gnu: packages: 0ad: Tweak the build options.
    
    Use the -C make option, rather than changing directory before the build
    phase. Add config=release to the make flags as this might improve 
performance,
    and verbose=1 as this might make the build process clearer.
    
    Also remove --minimal-flags, as I don't quite understand what this does, but
    using it seems to remove lots of flags that would be used by default.
    
    * gnu/packages/games.scm (0ad)[arguments]: Add #:make-flags, remove the
      --minimal-flags argument from the configure phase, remove the 'chdir 
phase,
      and change the chdir argument in the install phase.
---
 gnu/packages/games.scm | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 0128d63..ce799ae 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -4922,7 +4922,8 @@ fight against their plot and save his fellow rabbits from 
slavery.")
        ("python-2" ,python-2)))
     (build-system gnu-build-system)
     (arguments
-     `(#:phases
+     `(#:make-flags '("config=release" "verbose=1" "-C" "build/workspaces/gcc")
+       #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'delete-bundles
            (lambda _
@@ -4949,17 +4950,12 @@ fight against their plot and save his fellow rabbits 
from slavery.")
                  (zero? (system* "./update-workspaces.sh"
                                  (string-append "--libdir=" lib)
                                  (string-append "--datadir=" data)
-                                 "--minimal-flags"
                                  ;; TODO: "--with-system-nvtt"
                                  "--with-system-mozjs38"))))))
-         (add-before 'build 'chdir
-           (lambda _
-             (chdir "build/workspaces/gcc")
-             #t))
          (delete 'check)
          (replace 'install
            (lambda* (#:key inputs outputs #:allow-other-keys)
-             (chdir "../../../binaries")
+             (chdir "binaries")
              (let* ((out (assoc-ref outputs "out"))
                     (bin (string-append out "/bin"))
                     (lib (string-append out "/lib"))



reply via email to

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