diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-11-22 22:52:01 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-11-22 22:52:01 +0100 |
commit | 92deae62c19eaad08fc9f863225872dfef642cd8 (patch) | |
tree | dd64cc59f2b8229c11b7594ee628c2a08f03e1b5 /gnu | |
parent | 02296cb0c8bff29e82cdfc48bf59f4648db7d6b2 (diff) | |
download | guix-92deae62c19eaad08fc9f863225872dfef642cd8.tar guix-92deae62c19eaad08fc9f863225872dfef642cd8.tar.gz |
gnu: jumpnbump: Remove trailing #T.
* gnu/packages/games.scm (jumpnbump)[arguments]: Remove trailing #T from build
phase 'fix-sdl-path.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/games.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 65c05a9018..5a20330ca7 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -9431,8 +9431,7 @@ simulator.") (lambda* (#:key inputs #:allow-other-keys) (substitute* "Makefile" (("sdl2-config" command) - (string-append command " --prefix=" (assoc-ref inputs "sdl")))) - #t))))) + (string-append command " --prefix=" (assoc-ref inputs "sdl"))))))))) (inputs `(("bzip2" ,bzip2) ("sdl" ,(sdl-union (list sdl2 sdl2-mixer sdl2-net))) |