diff options
author | Dylan Noblesmith <nobled@dreamwidth.org> | 2011-12-18 18:50:16 +0000 |
---|---|---|
committer | Dylan Noblesmith <nobled@dreamwidth.org> | 2011-12-18 18:50:16 +0000 |
commit | 7fe0e03fb068406b9a67930c278aff661ef271e8 (patch) | |
tree | 630245d95ce06c4962c0be29341a99429a8df9a0 /autoconf/configure.ac | |
parent | 4c1ea552c54eefceeb7489a794a6d18b01c29900 (diff) |
capitalize project name, reference bugzilla
And fix the double-[]. It was including the [] as part of
the project name somehow, resulting in PACKAGE_TARNAME "-llvm-"
and a strange docdir default:
./configure --help | grep docdir
--docdir=DIR documentation root [DATAROOTDIR/doc/-llvm-]
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146849 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf/configure.ac')
-rw-r--r-- | autoconf/configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index d7fc95bdc8..d90f99fe4e 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -30,8 +30,8 @@ dnl=== SECTION 1: Initialization & Setup dnl=== dnl===-----------------------------------------------------------------------=== dnl Initialize autoconf and define the package name, version number and -dnl email address for reporting bugs. -AC_INIT([[llvm]],[[3.1svn]],[llvmbugs@cs.uiuc.edu]) +dnl address for reporting bugs. +AC_INIT([LLVM],[3.1svn],[http://llvm.org/bugs/]) dnl Provide a copyright substitution and ensure the copyright notice is included dnl in the output of --version option of the generated configure script. |