summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-08-04 16:25:01 +0000
committerDan Gohman <gohman@apple.com>2010-08-04 16:25:01 +0000
commit56fb5f920e279d0fa5c50bf2c274d58a51d2c582 (patch)
treeabe07a98347b994bbce5c1912c9b1b2c1caf9524 /autoconf
parentd27db32ff4051f52839f2a92a41e13fb903448ee (diff)
downloadllvm-56fb5f920e279d0fa5c50bf2c274d58a51d2c582.tar.gz
llvm-56fb5f920e279d0fa5c50bf2c274d58a51d2c582.tar.bz2
llvm-56fb5f920e279d0fa5c50bf2c274d58a51d2c582.tar.xz
Remove CVS artifacts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110207 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac9
1 files changed, 4 insertions, 5 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 18c9669cc9..06cb40bbf3 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -101,7 +101,6 @@ for i in `ls ${srcdir}/projects`
do
if test -d ${srcdir}/projects/${i} ; then
case ${i} in
- CVS) ;;
sample) AC_CONFIG_SUBDIRS([projects/sample]) ;;
privbracket) AC_CONFIG_SUBDIRS([projects/privbracket]) ;;
llvm-stacker) AC_CONFIG_SUBDIRS([projects/llvm-stacker]) ;;
@@ -369,13 +368,13 @@ else
AC_SUBST(LLVM_CROSS_COMPILING, [0])
fi
-dnl Check to see if there's a "CVS" (or .svn or .git) directory indicating
-dnl that this build is being done from a checkout. This sets up several
-dnl defaults for the command line switches. When we build with a CVS directory,
+dnl Check to see if there's a .svn or .git directory indicating that this
+dnl build is being done from a checkout. This sets up several defaults for
+dnl the command line switches. When we build with a checkout directory,
dnl we get a debug with assertions turned on. Without, we assume a source
dnl release and we get an optimized build without assertions.
dnl See --enable-optimized and --enable-assertions below
-if test -d "CVS" -o -d "${srcdir}/CVS" -o -d ".svn" -o -d "${srcdir}/.svn" -o -d ".git" -o -d "${srcdir}/.git"; then
+if test -d ".svn" -o -d "${srcdir}/.svn" -o -d ".git" -o -d "${srcdir}/.git"; then
cvsbuild="yes"
optimize="no"
AC_SUBST(CVSBUILD,[[CVSBUILD=1]])