[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] testsuite: Fix nbdkit usage when /usr/sbin is not on PATH
|
From: |
Jose E. Marchesi |
|
Subject: |
Re: [PATCH] testsuite: Fix nbdkit usage when /usr/sbin is not on PATH |
|
Date: |
Fri, 06 Mar 2020 18:32:41 +0100 |
|
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) |
Hi Eric.
- AC_CHECK_PROGS([NBDKIT], [nbdkit], [no])
+ AC_PATH_PROGS([NBDKIT], [nbdkit], [no], [$PATH:/usr/sbin])
You may want to include /usr/local/sbin in that path as well, as it is
where the distribution tarball installs nbdkit by default.
Otherwise, this is OK for master.
Thanks!