forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information
Showing
3 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,9 +23,9 @@ if( LLVM_APPEND_VC_REV ) | |
add_version_info_from_vcs(PACKAGE_VERSION) | ||
endif() | ||
|
||
set(PACKAGE_NAME llvm) | ||
set(PACKAGE_NAME LLVM) | ||
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") | ||
set(PACKAGE_BUGREPORT "[email protected]") | ||
set(PACKAGE_BUGREPORT "http://llvm.org/bugs/") | ||
|
||
# Sanity check our source directory to make sure that we are not trying to | ||
# generate an in-tree build (unless on MSVC_IDE, where it is ok), and to make | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]],[[email protected]]) | ||
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. | ||
|