[llvm-commits] CVS: llvm/autoconf/configure.ac
Reid Spencer
reid at x10sys.com
Tue Sep 21 10:12:45 PDT 2004
Changes in directory llvm/autoconf:
configure.ac updated: 1.114 -> 1.115
---
Log message:
Don't attempt to (illegally) configure a subdir if we don't recognize it.
Instead just create a warning message that says the directory cannot be
configured because it isn't recognized. This also gets rid of a bunch of
warning messages from the auto* tools.
---
Diffs of the changes: (+3 -1)
Index: llvm/autoconf/configure.ac
diff -u llvm/autoconf/configure.ac:1.114 llvm/autoconf/configure.ac:1.115
--- llvm/autoconf/configure.ac:1.114 Mon Sep 20 10:45:36 2004
+++ llvm/autoconf/configure.ac Tue Sep 21 12:12:35 2004
@@ -31,7 +31,9 @@
"Java") AC_CONFIG_SUBDIRS([projects/Java]) ;;
"llvm-tv") AC_CONFIG_SUBDIRS([projects/llvm-tv]) ;;
"llvm-fefw") AC_CONFIG_SUBDIRS([projects/llvm-fefw]) ;;
- *) AC_CONFIG_SUBDIRS(${i}) ;;
+ *)
+ AC_MSG_WARN([Unknown projects (${i})won't be configured automatically])
+ ;;
esac
fi
done
More information about the llvm-commits
mailing list