aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2007-01-12 18:22:38 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2007-01-12 18:22:38 +0000
commit28783c3384857d876e37612051ae9c32a11d20ce (patch)
treed26075e8e46355c3a08cec575e2132be34e94562 /configure
parent0bb38313ae78a621a0596dc1089522ad5255e399 (diff)
downloadexternal_llvm-28783c3384857d876e37612051ae9c32a11d20ce.zip
external_llvm-28783c3384857d876e37612051ae9c32a11d20ce.tar.gz
external_llvm-28783c3384857d876e37612051ae9c32a11d20ce.tar.bz2
'==' is not a legal test operator on BSD. Use '='.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33126 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 6 insertions, 6 deletions
diff --git a/configure b/configure
index c6afa0d..9671120 100755
--- a/configure
+++ b/configure
@@ -7119,7 +7119,7 @@ cat >>confdefs.h <<\_ACEOF
#define HAVE_GRAPHVIZ 1
_ACEOF
- if test "$llvm_cv_os_type" == "MingW" ; then
+ if test "$llvm_cv_os_type" = "MingW" ; then
GRAPHVIZ=`echo $GRAPHVIZ | sed 's/^\/\([A-Za-z]\)\//\1:\//' `
fi
@@ -7175,7 +7175,7 @@ cat >>confdefs.h <<\_ACEOF
#define HAVE_DOT 1
_ACEOF
- if test "$llvm_cv_os_type" == "MingW" ; then
+ if test "$llvm_cv_os_type" = "MingW" ; then
DOT=`echo $DOT | sed 's/^\/\([A-Za-z]\)\//\1:\//' `
fi
@@ -7236,7 +7236,7 @@ cat >>confdefs.h <<\_ACEOF
#define HAVE_GV 1
_ACEOF
- if test "$llvm_cv_os_type" == "MingW" ; then
+ if test "$llvm_cv_os_type" = "MingW" ; then
GV=`echo $GV | sed 's/^\/\([A-Za-z]\)\//\1:\//' `
fi
@@ -7292,7 +7292,7 @@ cat >>confdefs.h <<\_ACEOF
#define HAVE_DOTTY 1
_ACEOF
- if test "$llvm_cv_os_type" == "MingW" ; then
+ if test "$llvm_cv_os_type" = "MingW" ; then
DOTTY=`echo $DOTTY | sed 's/^\/\([A-Za-z]\)\//\1:\//' `
fi
@@ -26899,7 +26899,7 @@ _ACEOF
fi
-if test "$llvm_cv_os_type" == "MingW" ; then
+if test "$llvm_cv_os_type" = "MingW" ; then
{ echo "$as_me:$LINENO: checking for main in -limagehlp" >&5
echo $ECHO_N "checking for main in -limagehlp... $ECHO_C" >&6; }
@@ -33343,7 +33343,7 @@ SHLIBEXT=$libltdl_cv_shlibext
# Translate the various configuration directories and other basic
# information into substitutions that will end up in Makefile.config.in
# that these configured values can be used by the makefiles
-if test "${prefix}" == "NONE" ; then
+if test "${prefix}" = "NONE" ; then
prefix="/usr/local"
fi
eval LLVM_PREFIX="${prefix}";