Fixing (harmless) typos.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42528 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Gordon Henriksen 2007-10-02 10:14:32 +00:00
parent c0efff86a5
commit 48c7253054
2 changed files with 1 additions and 4 deletions

View File

@ -105,9 +105,6 @@ BUILD_EXEEXT=@BUILD_EXEEXT@
# Target triple (cpu-vendor-os) for which we should generate code
TARGET_TRIPLE=@target@
# Targets that we should build
TARGETS_TO_BUILD=@TARGETS_TO_BUILD@
# Extra options to compile LLVM with
EXTRA_OPTIONS=@EXTRA_OPTIONS@

View File

@ -438,7 +438,7 @@ AC_ARG_ENABLE([bindings],AS_HELP_STRING([--enable-bindings],
enableval=default)
BINDINGS_TO_BUILD=""
case "$enableval" in
all | yes | default | auto) BINDINGS_TO_BUILD="auto" ;;
yes | default | auto) BINDINGS_TO_BUILD="auto" ;;
all ) BINDINGS_TO_BUILD="ocaml" ;;
none | no) BINDINGS_TO_BUILD="" ;;
*)for a_binding in `echo $enableval|sed -e 's/,/ /g' ` ; do