diff options
-rw-r--r-- | gnu/packages/astronomy.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 5dcb03ee5a..c7d27a58d3 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -820,13 +820,11 @@ provide you with detailed information about each pass.") (lambda* (#:key tests? #:allow-other-keys) (when tests? (with-directory-excursion "test" - (invoke "ctest")) - #t))) + (invoke "ctest"))))) (add-before 'install 'set-install-directories (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) - (mkdir-p (string-append out "/lib/udev/rules.d"))) - #t))))) + (mkdir-p (string-append out "/lib/udev/rules.d")))))))) (native-inputs `(("googletest" ,googletest))) (inputs |