[llvm-commits] CVS: llvm/configure
Jeff Cohen
jeffc at jolt-lang.org
Fri Jan 12 10:22:57 PST 2007
Changes in directory llvm:
configure updated: 1.262 -> 1.263
---
Log message:
'==' is not a legal test operator on BSD. Use '='.
---
Diffs of the changes: (+6 -6)
configure | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
Index: llvm/configure
diff -u llvm/configure:1.262 llvm/configure:1.263
--- llvm/configure:1.262 Thu Dec 21 16:55:41 2006
+++ llvm/configure Fri Jan 12 12:22:38 2007
@@ -7119,7 +7119,7 @@
#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 @@
#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 @@
#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 @@
#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 @@
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 @@
# 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}";
More information about the llvm-commits
mailing list