diff options
author | Thomas Haller <thaller@redhat.com> | 2023-05-15 14:46:41 +0200 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2023-05-15 14:46:49 +0200 |
commit | fe78d15501c6b3597d0806a1f139e4cc0da84507 (patch) | |
tree | a0e0db2731a0fa12697e9227fdb8398369492236 /configure.ac | |
parent | e5eba7c789cca47a9b7871fdaf3be705de41f08f (diff) | |
download | NetworkManager-th/build-fixes-cloud-setup.tar.gz |
all: avoid "==" bashism in scriptsth/build-fixes-cloud-setup
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index db9d5759c5..ef07334d45 100644 --- a/configure.ac +++ b/configure.ac @@ -1073,12 +1073,12 @@ AC_ARG_WITH(nmcli, AS_HELP_STRING([--with-nmcli=yes|no], [Build nmcli]), [], [with_nmcli=yes]) -if test "$with_nmcli" == yes; then +if test "$with_nmcli" = yes; then if test "$with_readline" = none; then AC_MSG_FAILURE([nmcli requires readline library. Use --with-readline or --with-nmcli=no]) fi build_nmcli=yes -elif test "$with_nmcli" == no; then +elif test "$with_nmcli" = no; then build_nmcli=no else AC_MSG_ERROR([invalid --with-nmcli option. Valid options are --with-nmcli=yes|no]) |