diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2009-12-07 00:27:35 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2009-12-07 00:27:35 +0000 |
commit | 662908cdcfcca1a2832b6580838fb592324474b8 (patch) | |
tree | 74b31c5460cfdb92c6096361373fee812cf89170 | |
parent | d0e8de2cd82ebd517493626a503dbbc6d1f74430 (diff) | |
download | bcm5719-llvm-662908cdcfcca1a2832b6580838fb592324474b8.tar.gz bcm5719-llvm-662908cdcfcca1a2832b6580838fb592324474b8.zip |
Fix typos. Thanks to John Tytgat for noticing it!
llvm-svn: 90728
-rw-r--r-- | llvm/Makefile.config.in | 2 | ||||
-rw-r--r-- | llvm/autoconf/configure.ac | 2 | ||||
-rwxr-xr-x | llvm/configure | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/llvm/Makefile.config.in b/llvm/Makefile.config.in index 44296a466d2..2cc69dcf4cf 100644 --- a/llvm/Makefile.config.in +++ b/llvm/Makefile.config.in @@ -313,7 +313,7 @@ endif # Location of the plugin header file for gold. BINUTILS_INCDIR := @BINUTILS_INCDIR@ -C_INCLUDE_DIRS := @C_INCLUDE_DISR@ +C_INCLUDE_DIRS := @C_INCLUDE_DIRS@ CXX_INCLUDE_ROOT := @CXX_INCLUDE_ROOT@ CXX_INCLUDE_ARCH := @CXX_INCLUDE_ARCH@ CXX_INCLUDE_32BIT_DIR = @CXX_INCLUDE_32BIT_DIR@ diff --git a/llvm/autoconf/configure.ac b/llvm/autoconf/configure.ac index 951969846e5..9ebaadc3bbc 100644 --- a/llvm/autoconf/configure.ac +++ b/llvm/autoconf/configure.ac @@ -672,7 +672,7 @@ case "$withval" in *) AC_MSG_ERROR([Invalid path for --with-ocaml-libdir. Provide full path]) ;; esac -AC_ARG_WITH(c-include-dir, +AC_ARG_WITH(c-include-dirs, AS_HELP_STRING([--with-c-include-dirs], [Colon separated list of directories clang will search for headers]),, withval="") diff --git a/llvm/configure b/llvm/configure index 4ef693fa6dd..3e0ca0a680b 100755 --- a/llvm/configure +++ b/llvm/configure @@ -5286,9 +5286,9 @@ echo "$as_me: error: Invalid path for --with-ocaml-libdir. Provide full path" >& esac -# Check whether --with-c-include-dir was given. -if test "${with_c_include_dir+set}" = set; then - withval=$with_c_include_dir; +# Check whether --with-c-include-dirs was given. +if test "${with_c_include_dirs+set}" = set; then + withval=$with_c_include_dirs; else withval="" fi |