mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-27 15:41:46 +00:00
Don't use bashism/kshism of test ==. From Kamil Rytarowski.
Differential Revision: http://reviews.llvm.org/D12642 llvm-svn: 247512
This commit is contained in:
parent
2fcfef542a
commit
737e7d68bc
@ -74,7 +74,7 @@ if test ${srcdir} != "." ; then
|
||||
fi
|
||||
|
||||
dnl Quit if it is an in-source build
|
||||
if test ${srcdir} == "." ; then
|
||||
if test ${srcdir} = "." ; then
|
||||
AC_MSG_ERROR([In-source builds are not allowed. Please configure from a separate build directory!])
|
||||
fi
|
||||
|
||||
|
2
llvm/configure
vendored
2
llvm/configure
vendored
@ -2033,7 +2033,7 @@ echo "$as_me: error: Already configured in ${srcdir}" >&2;}
|
||||
fi
|
||||
fi
|
||||
|
||||
if test ${srcdir} == "." ; then
|
||||
if test ${srcdir} = "." ; then
|
||||
{ { echo "$as_me:$LINENO: error: In-source builds are not allowed. Please configure from a separate build directory!" >&5
|
||||
echo "$as_me: error: In-source builds are not allowed. Please configure from a separate build directory!" >&2;}
|
||||
{ (exit 1); exit 1; }; }
|
||||
|
Loading…
Reference in New Issue
Block a user