diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-11-11 23:05:10 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-11-12 17:41:38 +0900 |
commit | 742765656e3f58f396915e2291ded0f12aa6b9a1 (patch) | |
tree | f13151e937c7ef2bf77d946238080017bc41a03e | |
parent | b8caf74f299d68bff90da92e37c99051a3616846 (diff) | |
download | guix-742765656e3f58f396915e2291ded0f12aa6b9a1.tar.gz |
gnu: iverilog: Remove extraneous #:test-target argument.
'check' is its default value for the gnu-build-system. * gnu/packages/fpga.scm (iverilog) [arguments] <#:test-target>: Delete argument. Change-Id: I82c3103f71cfc39988f21d09f9bcdbcbdf9d1e03
-rw-r--r-- | gnu/packages/fpga.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm index c812ed3b7e..c658ed8da4 100644 --- a/gnu/packages/fpga.scm +++ b/gnu/packages/fpga.scm @@ -121,9 +121,7 @@ formal verification.") (build-system gnu-build-system) (arguments (list - #:test-target "check" - #:make-flags #~(list (string-append "PREFIX=" - #$output)) + #:make-flags #~(list (string-append "PREFIX=" #$output)) #:bootstrap-scripts #~(list "autoconf.sh"))) (native-inputs (list autoconf bison flex gperf)) (home-page "https://steveicarus.github.io/iverilog") |