diff options
-rw-r--r-- | Makefile.config.in | 3 | ||||
-rw-r--r-- | autoconf/configure.ac | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/Makefile.config.in b/Makefile.config.in index 34ad773..778c4e8 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -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@ diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 0d15ee0..9bf2d0e 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -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 |