diff options
author | Jim Meyering <meyering@redhat.com> | 2008-06-03 08:34:09 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-06-03 09:15:00 +0200 |
commit | 896b672499d6a31a6caf85411bcbdde6edc57668 (patch) | |
tree | 27683a9e32614e6ea09de5e06d7967164593bbd7 /src/echo.c | |
parent | 1b0b6c8d08785bf9b05931371259ac710a806e51 (diff) | |
download | coreutils-896b672499d6a31a6caf85411bcbdde6edc57668.tar.xz |
use gnulib's progname module
* bootstrap.conf (gnulib_modules): Add progname.
* src/*.c (program_name): Remove declaration.
* (main): Call set_program_name rather than setting program_name.
* src/nice.c (main): Cast program_name to "(char *)".
* src/prog-fprintf.c: Include "system.h"
* src/system.h: Include "progname.h".
* maint.mk (sc_program_name): Adjust rule.
Suggestion from Eric Blake.
Diffstat (limited to 'src/echo.c')
-rw-r--r-- | src/echo.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/echo.c b/src/echo.c index 4b8f56071..ebbf5b82e 100644 --- a/src/echo.c +++ b/src/echo.c @@ -50,9 +50,6 @@ on System V systems with the -E option. enum { DEFAULT_ECHO_TO_XPG = false }; #endif -/* The name this program was run with. */ -char const *program_name; - void usage (int status) { @@ -134,7 +131,7 @@ main (int argc, char **argv) bool do_v9 = DEFAULT_ECHO_TO_XPG; initialize_main (&argc, &argv); - program_name = argv[0]; + set_program_name (argv[0]); setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); |