aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer/locale.scm
diff options
context:
space:
mode:
author宋文武 <iyzsong@member.fsf.org>2024-12-20 11:47:43 +0800
committer宋文武 <iyzsong@member.fsf.org>2024-12-22 14:08:47 +0800
commit414edd7f8ed0a1c525d7910bd6a712057b686334 (patch)
tree20d46b8d9d258987a64fd34c094524dfa5cb9672 /gnu/installer/locale.scm
parent2e6adef5a61e074299c5331e04a43f1039b0921e (diff)
downloadguix-414edd7f8ed0a1c525d7910bd6a712057b686334.tar.gz
guix-414edd7f8ed0a1c525d7910bd6a712057b686334.zip
gnu: xfce4-pulseaudio-plugin: Update to 0.4.9.
* gnu/packages/xfce.scm (xfce4-pulseaudio-plugin): Update to 0.4.9. Change-Id: I16d3c40c07a9d7c2c2a3ad4bdf1a044c78617b1a
Diffstat (limited to 'gnu/installer/locale.scm')
0 files changed, 0 insertions, 0 deletions
346210b1b2130112dd5f894c1d40afb37c1c51a5'>build: test-driver.scm: Enable colored test results by default....The Automake parallel test harness does its own smart detection of the terminal color capability and always provides the --color-tests argument to the driver. This change defaults the --color-tests argument to true when the test driver is run on its own (not via Automake). * build-aux/test-driver.scm (main): Set the default value of the --color-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