* [PATCH] build: dub-build-system: Don't use "dub run" at all.
@ 2017-02-13 14:05 Danny Milosavljevic
0 siblings, 0 replies; only message in thread
From: Danny Milosavljevic @ 2017-02-13 14:05 UTC (permalink / raw)
To: guix-devel
* guix/build/dub-build-system.scm (build): Modify.
---
guix/build/dub-build-system.scm | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/guix/build/dub-build-system.scm b/guix/build/dub-build-system.scm
index 7c7cd8803..b2cb02e63 100644
--- a/guix/build/dub-build-system.scm
+++ b/guix/build/dub-build-system.scm
@@ -91,9 +91,7 @@
(grep* "sourceLibrary" "dub.sdl") ; note: format is different!
(grep* "sourceLibrary" "dub.json"))
#t
- (let ((status (zero? (apply system* `("dub" "build" ,@dub-build-flags)))))
- (system* "dub" "run") ; might fail for "targetType": "library"
- status)))
+ (zero? (apply system* `("dub" "build" ,@dub-build-flags)))))
(define* (check #:key tests? #:allow-other-keys)
(if tests?
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2017-02-13 14:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-13 14:05 [PATCH] build: dub-build-system: Don't use "dub run" at all Danny Milosavljevic
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.