1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Fix a Bourne Shell syntax error in a test

llvm-svn: 19183
This commit is contained in:
Reid Spencer 2004-12-29 06:59:36 +00:00
parent e81bc94b62
commit 597e16ea02

View File

@ -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