diff options
author | Mark H Weaver <mhw@netris.org> | 2015-10-21 18:37:53 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2015-10-21 18:37:53 -0400 |
commit | e0a7d364589578a9b75943f827b05e74e7b63dea (patch) | |
tree | 778ea0e372c0ce520628020c49bf5b335c32b748 /gnu/packages/games.scm | |
parent | e11b27520412ea046834eb425f32f7592f7fe094 (diff) | |
download | guix-e0a7d364589578a9b75943f827b05e74e7b63dea.tar guix-e0a7d364589578a9b75943f827b05e74e7b63dea.tar.gz |
gnu: dosbox: Put the 'autogen.sh' phase after 'unpack'.
* gnu/packages/games.scm (dosbox)[arguments]: Put the 'autogen.sh' phase
after 'unpack', instead of before 'configure'.
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 6552729087..9d2058af43 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -6,7 +6,7 @@ ;;; Copyright © 2014 Sylvain Beucler <beuc@beuc.net> ;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2014, 2015 Sou Bunnbu <iyzsong@gmail.com> -;;; Copyright © 2014 Mark H Weaver <mhw@netris.org> +;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2015 David Hashe <david.hashe@dhashe.com> ;;; Copyright © 2015 Christopher Allan Webber <cwebber@dustycloud.org> @@ -1069,8 +1069,8 @@ next campaign.") (build-system gnu-build-system) (arguments `(#:phases (modify-phases %standard-phases - (add-before - 'configure 'autogen.sh + (add-after + 'unpack 'autogen.sh (lambda _ (zero? (system* "sh" "autogen.sh"))))))) (native-inputs |