The following changes since commit afa37b56c6637967180e4409adbb682b2ce16bcb: filehash: ignore hashed file with fd == -1 (2021-06-17 10:55:20 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to d3dacdc61dfe878fda0c363084c4330492e38b2b: Merge branch 'pkg_config_1' of https://github.com/kusumi/fio (2021-06-20 10:44:49 -0600) ---------------------------------------------------------------- Jens Axboe (1): Merge branch 'pkg_config_1' of https://github.com/kusumi/fio Tomohiro Kusumi (1): configure: silence "pkg-config: not found" configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- Diff of recent changes: diff --git a/configure b/configure index 8b763700..84ccce04 100755 --- a/configure +++ b/configure @@ -2285,7 +2285,7 @@ print_config "DAOS File System (dfs) Engine" "$dfs" ########################################## # Check if we have libnfs (for userspace nfs support). if test "$disable_nfs" != "yes"; then - if $(pkg-config libnfs); then + if $(pkg-config libnfs > /dev/null 2>&1); then libnfs="yes" libnfs_cflags=$(pkg-config --cflags libnfs) libnfs_libs=$(pkg-config --libs libnfs)