aboutsummaryrefslogtreecommitdiff
path: root/gnu/build/svg.scm
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2020-12-19 17:42:35 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2020-12-28 22:25:02 +0100
commitf4a687eef4a1b257d2a2d831027e326630b8d1e9 (patch)
treee41d592c218345c2bf0fe15a22c9359c1af39716 /gnu/build/svg.scm
parentea436a04c8da0961f054cf1c5e2b073bc892936e (diff)
downloadguix-f4a687eef4a1b257d2a2d831027e326630b8d1e9.tar.gz
guix-f4a687eef4a1b257d2a2d831027e326630b8d1e9.zip
gnu: rust-trust-dns-openssl-0.19: Fix build.
* gnu/packages/crates-io.scm (rust-trust-dns-openssl-0.19)[native-inputs]: Add pkg-config. [inputs]: Add openssl.
Diffstat (limited to 'gnu/build/svg.scm')
0 files changed, 0 insertions, 0 deletions
tests argument to true when it's not explicitly provided. Maxim Cournoyer 2021-01-31build: test-driver.scm: Make output redirection optional....This makes it easier (and less surprising) for users to experiment with the custom Scheme test driver directly. The behavior is unchanged from Automake's point of view. * build-aux/test-driver.scm (main): Make the --log-file and --trs-file arguments optional and update doc. Only open, redirect and close a port to a log file when the --log-file option is provided. Only open and close a port to a trs file when the --trs-file option is provided. (test-runner-gnu): Set OUT-PORT parameter default value to the current output port. Set the TRS-PORT parameter default value to a void port. Update doc. Maxim Cournoyer 2017-03-22build: 'test-driver.scm' prints Scheme values with 'write'....Previously it would print them with 'display', which was inconvenient. * build-aux/test-driver.scm (test-display): Use ~S for VALUE. (test-runner-gnu): Use 'format' instead of 'test-display' for the test name, location, and result kind. Ludovic Courtès