diff options
-rw-r--r-- | gnu/packages/cpp.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index bb7f5ab95a..eb48902034 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -1297,8 +1297,7 @@ provides a number of utilities to make coding with expected cleaner.") (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? - (lambda _ - (invoke "make" "run_tests"))))) + (invoke "./tests")))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (copy-recursively "../source/include/atomic_queue" |