mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-01 23:30:13 +01:00
distro: fix configure error affecting SUSE netconfig support
Configure now doesn't complain about too many arguments to test.
Bug introduced in my commit:
71e5437: distro: add --with-netconfig option for SUSE
This commit is contained in:
parent
eeb19fe216
commit
5980cae149
1 changed files with 2 additions and 2 deletions
|
|
@ -561,10 +561,10 @@ if test "$with_netconfig" = "yes"; then
|
|||
AC_PATH_PROGS(with_netconfig, netconfig, no, /sbin:/usr/sbin:/usr/local/sbin)
|
||||
fi
|
||||
# Define resolvconf and netconfig paths
|
||||
if test "${with_resolvconf}" != "no"; then
|
||||
if test "$with_resolvconf" != "no"; then
|
||||
AC_DEFINE_UNQUOTED(RESOLVCONF_PATH, "$with_resolvconf", [Path to resolvconf (if enabled)])
|
||||
fi
|
||||
if test -n "${with_netconfig}" != "no"; then
|
||||
if test "$with_netconfig" != "no"; then
|
||||
AC_DEFINE_UNQUOTED(NETCONFIG_PATH, "$with_netconfig", [Path to netconfig (if enabled)])
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue