diff options
author | Eric Blake <ebb9@byu.net> | 2007-08-30 17:11:59 +0200 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-08-30 17:12:56 +0200 |
commit | 4b11f24c64db5fc05acc4dd87c8733d3f6be1265 (patch) | |
tree | bb9006d0ac7aa0b787a2722f96ce95d935ff3c90 /m4 | |
parent | 58ddd2c5a1a80b1c3ef6d1717842d082d24409cf (diff) | |
download | coreutils-4b11f24c64db5fc05acc4dd87c8733d3f6be1265.tar.xz |
Use PACKAGE_NAME instead of GNU_PACKAGE.
* src/Makefile.am (.sh, uninstall-local): Adjust all users of
hand-rolled GNU_PACKAGE to instead use autoconf-provided
PACKAGE_NAME.
* src/basename.c (main): Likewise.
* src/chroot.c (main): Likewise.
* src/dirname.c (main): Likewise.
* src/echo.c (main): Likewise.
* src/expr.c (main): Likewise.
* src/factor.c (main): Likewise.
* src/groups.sh (version): Likewise. Also, reflect change in
--version output due to GPLv3.
* src/hostid.c (main): Likewise.
* src/hostname.c (main): Likewise.
* src/link.c (main): Likewise.
* src/logname.c (main): Likewise.
* src/nice.c (main): Likewise.
* src/nohup.c (main): Likewise.
* src/printenv.c (main): Likewise.
* src/printf.c (main): Likewise.
* src/pwd.c (main): Likewise.
* src/setuidgid.c (main): Likewise.
* src/sleep.c (main): Likewise.
* src/system.h (case_GETOPT_VERSION_CHAR): Likewise.
* src/test.c (main): Likewise.
* src/true.c (main): Likewise.
* src/unlink.c (main): Likewise.
* src/uptime.c (main): Likewise.
* src/users.c (main): Likewise.
* src/whoami.c (main): Likewise.
* src/yes.c (main): Likewise.
* configure.ac (AC_CHECK_DECLS): No need to check strtoimax,
strtoumax, since gnulib does this.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/ChangeLog | 6 | ||||
-rw-r--r-- | m4/jm-macros.m4 | 5 |
2 files changed, 5 insertions, 6 deletions
diff --git a/m4/ChangeLog b/m4/ChangeLog index 8b350dfec..6829ab166 100644 --- a/m4/ChangeLog +++ b/m4/ChangeLog @@ -1,3 +1,7 @@ +2007-08-30 Eric Blake <ebb9@byu.net> + + * jm-macros.m4 (coreutils_MACROS): Remove GNU_PACKAGE. + 2007-04-25 Jim Meyering <jim@meyering.net> * autobuild.m4: Remove file. Now, provided by gnulib. @@ -553,7 +557,7 @@ Apply this change from gnulib: 2006-05-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> - Bruno Haible <bruno@clisp.org> + Bruno Haible <bruno@clisp.org> * strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a check for the declaration of strnlen and a run test that exposes the diff --git a/m4/jm-macros.m4 b/m4/jm-macros.m4 index c821c0994..416cc9c2b 100644 --- a/m4/jm-macros.m4 +++ b/m4/jm-macros.m4 @@ -21,11 +21,6 @@ dnl Misc type-related macros for coreutils. AC_DEFUN([coreutils_MACROS], [ - GNU_PACKAGE="GNU $PACKAGE" - AC_DEFINE_UNQUOTED(GNU_PACKAGE, "$GNU_PACKAGE", - [The concatenation of the strings `GNU ', and PACKAGE.]) - AC_SUBST(GNU_PACKAGE) - AM_MISSING_PROG(HELP2MAN, help2man) AC_SUBST(MAN) |