summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Lefevre <vincent@vinc17.net>2023-07-28 13:20:17 +0200
committerAlexander Naumov <alexander_naumov@opensuse.org>2023-07-28 13:20:17 +0200
commit6931ba07ca1646df8dee85485f9867b23b34fcf1 (patch)
treef073c7d4ec3426d34a98e5be8654a76e858d4503
parentecea7aa87dbb0fe04ea2145d0a9a7a08dc597088 (diff)
downloadscreen-6931ba07ca1646df8dee85485f9867b23b34fcf1.tar.gz
Fix bashisms in configure.ac
bug #62076
-rw-r--r--src/configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configure.ac b/src/configure.ac
index c4932a7..ad912ac 100644
--- a/src/configure.ac
+++ b/src/configure.ac
@@ -182,7 +182,7 @@ AS_IF([test "x$enable_telnet" = "xyes"], [
dnl -- enable_socket_dir
AS_IF([test "x$enable_socket_dir" != "xno"], [
- AS_IF([test "x$enable_socket_dir" == "xyes"],
+ AS_IF([test "x$enable_socket_dir" = "xyes"],
[enable_socket_dir="/run/screen"]
)
AC_DEFINE_UNQUOTED(SOCKET_DIR, "$enable_socket_dir")
@@ -198,7 +198,7 @@ dnl -- with_pty_group
AC_DEFINE_UNQUOTED(PTY_GROUP, $with_pty_group)
dnl -- with_pty_rofs
-AS_IF([test "x$with_pty_rofs" == "xyes"], [
+AS_IF([test "x$with_pty_rofs" = "xyes"], [
AC_DEFINE(PTY_ROFS)
])