diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm index 004d0824704af9e0407b44cfb8957bb723046a99..1e7fd098cb6d8ac8e170bf8b7334a1942f956bd6 100644 --- a/gnu/packages/embedded.scm +++ b/gnu/packages/embedded.scm @@ -575,7 +575,7 @@ (define-public proplib ;; have to create the target directories at build time. (add-before 'build 'create-target-directories (lambda* (#:key make-flags #:allow-other-keys) - (zero? (apply system* "make" "install-dirs" make-flags)))) + (apply invoke "make" "install-dirs" make-flags))) (add-before 'build 'set-cross-environment-variables (lambda* (#:key outputs #:allow-other-keys) (setenv "CROSS_LIBRARY_PATH" @@ -589,7 +589,7 @@ (define-public proplib #t)) (add-before 'install 'install-includes (lambda* (#:key make-flags #:allow-other-keys) - (zero? (apply system* "make" "install-includes" make-flags))))))) + (apply invoke "make" "install-includes" make-flags)))))) (native-inputs `(("propeller-gcc" ,propeller-gcc) ("propeller-binutils" ,propeller-binutils)