[llvm-commits] [support] r44767 - /support/trunk/autoconf/configure.ac

Reid Spencer rspencer at reidspencer.com
Sun Dec 9 19:16:44 PST 2007


Author: reid
Date: Sun Dec  9 21:16:43 2007
New Revision: 44767

URL: http://llvm.org/viewvc/llvm-project?rev=44767&view=rev
Log:
1. Update the version number to 2.2svn
2. Make DESTDIR not be defined as '' by using ''!

Modified:
    support/trunk/autoconf/configure.ac

Modified: support/trunk/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/support/trunk/autoconf/configure.ac?rev=44767&r1=44766&r2=44767&view=diff

==============================================================================
--- support/trunk/autoconf/configure.ac (original)
+++ support/trunk/autoconf/configure.ac Sun Dec  9 21:16:43 2007
@@ -33,7 +33,7 @@
 dnl===-----------------------------------------------------------------------===
 dnl Initialize autoconf and define the package name, version number and
 dnl email address for reporting bugs.
-AC_INIT([[LLVM Support Module]],[[2.1svn]],[http://llvm.org/bugs],[llvm-support])
+AC_INIT([[LLVM Support Module]],[[2.2svn]],[http://llvm.org/bugs],[llvm-support])
 THIS_IS_LLVM_MODULE([support])
 
 dnl Verify that the source directory is valid. This makes sure that we are
@@ -253,7 +253,7 @@
   AS_HELP_STRING([--with-destdir],
                  [Specify the install destination directory]),,withval=default)
 case "$withval" in
-  default)  DESTDIR="" ;;
+  default)  DESTDIR='' ;;
   *)        DESTDIR=$withval ;;
 esac
 AC_SUBST(DESTDIR,$DESTDIR)





More information about the llvm-commits mailing list