search for: 0469f1a

Displaying 4 results from an estimated 4 matches for "0469f1a".

2018 Nov 08
0
[nbdkit PATCH v2 1/5] maint: Improve ./nbdkit option parsing
...while we don't; it's not worth teaching our debug wrapper about unambiguous abbreviations. Signed-off-by: Eric Blake <eblake@redhat.com> --- nbdkit.in | 33 ++++++++++++++++++++------------- 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/nbdkit.in b/nbdkit.in index 0469f1a..a6318a4 100644 --- a/nbdkit.in +++ b/nbdkit.in @@ -64,19 +64,7 @@ verbose= while [ $# -gt 0 ]; do case "$1" in - # Flags that take an argument. We must not rewrite the argument. - # But make sure globs don't mishandle longopts with =. - --export*=* | --pi...
2018 Aug 12
0
[PATCH nbdkit 08/10] freebsd: In scripts use 'env bash' instead of '/bin/bash'.
...--git a/docs/make-links.sh b/docs/make-links.sh index ccf4554..048bb6c 100755 --- a/docs/make-links.sh +++ b/docs/make-links.sh @@ -1,4 +1,4 @@ -#!/bin/bash - +#!/usr/bin/env bash # nbdkit # Copyright (C) 2018 Red Hat Inc. # All rights reserved. diff --git a/nbdkit.in b/nbdkit.in index fc269d1..0469f1a 100644 --- a/nbdkit.in +++ b/nbdkit.in @@ -1,4 +1,4 @@ -#!/bin/bash - +#!/usr/bin/env bash # @configure_input@ # Copyright (C) 2017-2018 Red Hat Inc. diff --git a/tests/make-pki.sh b/tests/make-pki.sh index 413d898..bba92f7 100755 --- a/tests/make-pki.sh +++ b/tests/make-pki.sh @@ -1,4 +1,4 @@...
2018 Nov 08
8
[nbdkit PATCH v2 0/5] log appends
v2 turned out to be much more involved, as I ended up fixing several things along the way that I noticed while debugging a feature addition. Eric Blake (5): maint: Improve ./nbdkit option parsing main: Saner newline printing during --help utils: Add nbdkit_parse_bool main: Use new bool parser for --tls log: Allow user option of appending to log docs/nbdkit-plugin.pod | 11
2018 Aug 12
13
[PATCH nbdkit 00/10] FreeBSD support.
With these patches, a majority of tests pass. The notable things which are still broken: - Because FreeBSD links /home -> /usr/home, $(pwd) gives a different result from realpath(2). Therefore some tests which implicitly rely on (eg) a plugin which calls nbdkit_realpath internally and then checking that path against $(pwd) fail. - Shebangs (#!) don't seem to work the same way