]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Map non
authorAkim Demaille <akim@epita.fr>
Wed, 30 Jan 2002 16:13:10 +0000 (16:13 +0000)
committerAkim Demaille <akim@epita.fr>
Wed, 30 Jan 2002 16:13:10 +0000 (16:13 +0000)
alphanumeric to `-' instead of `_'.

ChangeLog
doc/autoconf.texi
lib/autoconf/general.m4

index 57472ff134ba74c52fef78433e7e26040f4f8eef..9c12cc1467ccdf8327b2916bb917aaa6f25a1633 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-01-30  Akim Demaille  <akim@epita.fr>
+
+       * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Map non
+       alphanumeric to `-' instead of `_'.
+
 2002-01-30  Akim Demaille  <akim@epita.fr>
 
        * tests/semantics.at (AC_CHECK_SIZEOF): Split into two tests: one
index ec25afcaf9b2ee8fb8f613445b6103a8b022f4bb..efa5a36b7beb1f9d41fb7f828f1d3d3c5fb62e43 100644 (file)
@@ -1504,7 +1504,7 @@ Exactly @var{package}.
 @ovindex PACKAGE_TARNAME
 @cvindex PACKAGE_TARNAME
 @var{package} once @samp{GNU } strip, lower cased, and all non
-alphanumeric character mapped onto @samp{_}.
+alphanumeric character mapped onto @samp{-}.
 
 @item @code{AC_PACKAGE_VERSION}, @code{PACKAGE_VERSION}
 @acindex PACKAGE_VERSION
@@ -4620,7 +4620,7 @@ implemented.  In case of doubt, read the documentation of the former
 @ovindex EXEEXT
 All the tests for compilers (@code{AC_PROG_CC}, @code{AC_PROG_CXX},
 @code{AC_PROG_F77}) define the output variable @code{EXEEXT} based on
-the output of the compiler, typically to the empty string if Unix and
+the output of the 1compiler, typically to the empty string if Unix and
 @samp{.exe} if Win32 or OS/2.
 
 @ovindex OBJEXT
index 2dc0a70539db8be6528bd7dfd0ad9f2374830f23..c121a95dd393399fb6bbf3bff7e9970b5c18fdee 100644 (file)
@@ -295,7 +295,7 @@ m4_ifndef([AC_PACKAGE_TARNAME],
           [m4_define([AC_PACKAGE_TARNAME],
                      m4_bpatsubst(m4_tolower(m4_bpatsubst([[[$1]]], [GNU ])),
                                   [[^abcdefghijklmnopqrstuvwxyz0123456789]],
-                                  [_]))])
+                                  [-]))])
 m4_ifndef([AC_PACKAGE_VERSION],
           [m4_define([AC_PACKAGE_VERSION],   [$2])])
 m4_ifndef([AC_PACKAGE_STRING],