diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-01-02 12:17:09 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-01-02 15:04:55 +0200 |
commit | 08d5e9cf221c1d4ef22560ec901bbfafc6f56b0b (patch) | |
tree | cef0f7e7bb5147791a4945e706f1db53af3302d7 /gnu | |
parent | 4eddc221b39c43085584d9bb1620360c4a1f3139 (diff) | |
download | guix-08d5e9cf221c1d4ef22560ec901bbfafc6f56b0b.tar.gz |
gnu: gtkd: Remove trailing #t from phases.
* gnu/packages/dlang.scm (gtkd)[arguments]: Remove trailing #t from phases.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/dlang.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/dlang.scm b/gnu/packages/dlang.scm index 77283adbed..7c8dbe0f7e 100644 --- a/gnu/packages/dlang.scm +++ b/gnu/packages/dlang.scm @@ -444,14 +444,12 @@ needed.") (("default-goal: libs test") "default-goal: libs") (("all: libs shared-libs test") "all: libs shared-libs") ;; Work around upstream bug. - (("\\$\\(prefix\\)\\/\\$\\(libdir\\)") "$(libdir)")) - #t)) + (("\\$\\(prefix\\)\\/\\$\\(libdir\\)") "$(libdir)")))) (add-before 'check 'pre-check (lambda _ (system "Xvfb :1 &") (setenv "DISPLAY" ":1") - (setenv "CC" ,(cc-for-target)) - #t))))) + (setenv "CC" ,(cc-for-target))))))) (home-page "https://gtkd.org/") (synopsis "D binding and OO wrapper of GTK+") (description "This package provides bindings to GTK+ for D.") |