From b09a68ef4b1ad0e44104a33d59ddc49b4b2a972e Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Wed, 29 Dec 2004 06:59:36 +0000 Subject: [PATCH] Fix a Bourne Shell syntax error in a test git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19183 91177308-0d34-0410-b5e6-96231b3b80d8 --- autoconf/m4/need_dev_zero_for_mmap.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoconf/m4/need_dev_zero_for_mmap.m4 b/autoconf/m4/need_dev_zero_for_mmap.m4 index 352c5186dbf..57b32283017 100644 --- a/autoconf/m4/need_dev_zero_for_mmap.m4 +++ b/autoconf/m4/need_dev_zero_for_mmap.m4 @@ -5,7 +5,7 @@ AC_DEFUN([AC_NEED_DEV_ZERO_FOR_MMAP], [AC_CACHE_CHECK([if /dev/zero is needed for mmap], ac_cv_need_dev_zero_for_mmap, -[if test "$llvm_cv_os_type" == "Interix" ; then +[if test "$llvm_cv_os_type" = "Interix" ; then ac_cv_need_dev_zero_for_mmap=yes else ac_cv_need_dev_zero_for_mmap=no -- 2.34.1