With the new virCommand infrastructure which can find the program in
path automatically we no longer need the build-time detection.
Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Pavel Hrdina <phrdina@redhat.com>
BuildRequires: /usr/bin/dtrace
# For mount/umount in FS driver
BuildRequires: util-linux
-# For showmount in FS driver (netfs discovery)
-BuildRequires: nfs-utils
%if %{with_numad}
BuildRequires: numad
%endif
conf.set_quoted('MOUNT', mount_prog.full_path())
conf.set_quoted('UMOUNT', umount_prog.full_path())
conf.set_quoted('MKFS', mkfs_prog.full_path())
-
- showmount_prog = find_program('showmount', required: false, dirs: libvirt_sbin_path)
- showmount_path = ''
- if showmount_prog.found()
- showmount_path = showmount_prog.full_path()
- endif
- conf.set_quoted('SHOWMOUNT', showmount_path)
endif
endif
g_autoptr(virCommand) cmd = NULL;
- cmd = virCommandNewArgList(SHOWMOUNT,
+ cmd = virCommandNewArgList("showmount",
"--no-headers",
"--exports",
state->host,