All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH mtd-utils] fix test bashism
@ 2022-01-12 18:22 Mike Frysinger
  2022-01-17  6:16 ` David Oberhollenzer
  0 siblings, 1 reply; 2+ messages in thread
From: Mike Frysinger @ 2022-01-12 18:22 UTC (permalink / raw)
  To: linux-mtd

From: Mike Frysinger <vapier@chromium.org>

Using == with `test` is a bashism.  POSIX shell only supports =.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
 configure.ac | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 262b69e85e15..93d97026dabd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -341,9 +341,9 @@ fi
 AM_CONDITIONAL([WITHOUT_LZO], [test "x$need_lzo" != "xyes"])
 AM_CONDITIONAL([WITHOUT_ZSTD], [test "x$need_zstd" != "xyes"])
 AM_CONDITIONAL([WITHOUT_XATTR], [test "x$need_xattr" != "xyes"])
-AM_CONDITIONAL([WITH_SELINUX], [test "x$need_selinux" == "xyes"])
-AM_CONDITIONAL([WITH_CRYPTO], [test "x$need_openssl" == "xyes"])
-AM_CONDITIONAL([WITH_GETRANDOM], [test "x$need_getrandom" == "xyes"])
+AM_CONDITIONAL([WITH_SELINUX], [test "x$need_selinux" = "xyes"])
+AM_CONDITIONAL([WITH_CRYPTO], [test "x$need_openssl" = "xyes"])
+AM_CONDITIONAL([WITH_GETRANDOM], [test "x$need_getrandom" = "xyes"])
 
 AC_CHECK_SIZEOF([off_t])
 AC_CHECK_SIZEOF([loff_t])
-- 
2.33.0


______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH mtd-utils] fix test bashism
  2022-01-12 18:22 [PATCH mtd-utils] fix test bashism Mike Frysinger
@ 2022-01-17  6:16 ` David Oberhollenzer
  0 siblings, 0 replies; 2+ messages in thread
From: David Oberhollenzer @ 2022-01-17  6:16 UTC (permalink / raw)
  To: Mike Frysinger, linux-mtd

Applied to mtd-utils.git master.

Thanks,

David


______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-01-17  6:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-12 18:22 [PATCH mtd-utils] fix test bashism Mike Frysinger
2022-01-17  6:16 ` David Oberhollenzer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.