aboutsummaryrefslogtreecommitdiff
path: root/gnu/system/vm.scm
diff options
context:
space:
mode:
authorMathieu Othacehe <m.othacehe@gmail.com>2020-06-22 20:55:19 +0200
committerMathieu Othacehe <othacehe@gnu.org>2020-06-23 09:51:14 +0200
commitc29bb909d241e7215e574e93d9799e701cbc6ddb (patch)
tree7209a24fc2abd5a853ba40d1724c3bdac30f2d48 /gnu/system/vm.scm
parent42a2ee1f9294614bd85892f2cc7318afb80b174c (diff)
downloadguix-c29bb909d241e7215e574e93d9799e701cbc6ddb.tar.gz
guix-c29bb909d241e7215e574e93d9799e701cbc6ddb.zip
gnu: fakeroot: Do not assume "sed" and "cut" to be available.
* gnu/packages/linux.scm (fakeroot)[inputs]: Add "sed" and "coreutils", [arguments]: substitute "sed" and "cut" by their absolute path in fakeroot script. Rename the associated phase from patch-getopt to patch-script.
Diffstat (limited to 'gnu/system/vm.scm')
0 files changed, 0 insertions, 0 deletions
01-31 22:23:41 -0500'>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