blob: a74cbb0c0e70d6aa7bf590055a90d05a05e0e44b [file] [log] [blame]
Brad Bishopf3fd2882019-06-21 08:06:37 -04001From 3c52a84ff8775590e7e9da9c0d4408c23494305e Mon Sep 17 00:00:00 2001
2From: Yi Zhao <yi.zhao@windriver.com>
3Date: Mon, 17 Jun 2019 15:36:34 +0800
4Subject: [PATCH] configure.ac: fix configure error with dash
5
6A configure error occurs when /bin/sh -> dash:
7 checking for is_selinux_enabled in -lselinux... yes
8 checking for semanage_connect in -lsemanage... yes
9 configure: 16322: test: yesyes: unexpected operator
10
11Use "=" instead of "==" since dash doesn't support this operator.
12
13Upstream-Status: Backport
14[https://github.com/shadow-maint/shadow/commit/3c52a84ff8775590e7e9da9c0d4408c23494305e]
15
16Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
17---
18 configure.ac | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21diff --git a/configure.ac b/configure.ac
22index 6762556..1907afb 100644
23--- a/configure.ac
24+++ b/configure.ac
25@@ -500,7 +500,7 @@ if test "$with_selinux" != "no"; then
26 AC_MSG_ERROR([libsemanage not found])
27 fi
28
29- if test "$selinux_lib$semanage_lib" == "yesyes" ; then
30+ if test "$selinux_lib$semanage_lib" = "yesyes" ; then
31 AC_DEFINE(WITH_SELINUX, 1,
32 [Build shadow with SELinux support])
33 LIBSELINUX="-lselinux"
34--
352.7.4
36