From 6a2c93631bf45ab2e189a36d06e5cf402d6a4517 Mon Sep 17 00:00:00 2001 From: Tomohiro Kusumi Date: Tue, 23 May 2017 21:43:57 +0300 Subject: [PATCH] configure: Use single square brackets (POSIX) Avoid "if [[...]]" format which seems to be bash extension. The script uses "if [...]" except for this one. Signed-off-by: Tomohiro Kusumi Signed-off-by: Jens Axboe --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 03275787..9ac97017 100755 --- a/configure +++ b/configure @@ -1682,7 +1682,7 @@ int main(int argc, char **argv) EOF if compile_prog "" "" "s390_z196_facilities"; then $TMPE - if [[ $? -eq 0 ]]; then + if [ $? -eq 0 ]; then s390_z196_facilities="yes" fi fi -- 2.25.1