diff options
author | Jim Meyering <jim@meyering.net> | 2001-01-17 09:42:36 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-01-17 09:42:36 +0000 |
commit | 43be299a76eb3ec877a9245569c177853a2039de (patch) | |
tree | 60acbf6f4ee71ff56869d23e672294c4fa49410a /src | |
parent | 1493e0d6504f0e7bb19ea20dfb8b772949113fd9 (diff) | |
download | coreutils-43be299a76eb3ec877a9245569c177853a2039de.tar.xz |
(main): Use PACKAGE, not GNU_PACKAGE.
Diffstat (limited to 'src')
-rw-r--r-- | src/cksum.c | 4 | ||||
-rw-r--r-- | src/tsort.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/cksum.c b/src/cksum.c index b185e5d45..043ee0264 100644 --- a/src/cksum.c +++ b/src/cksum.c @@ -1,5 +1,5 @@ /* cksum -- calculate and print POSIX.2 checksums and sizes of files - Copyright (C) 92, 1995-2000 Free Software Foundation, Inc. + Copyright (C) 92, 1995-2001 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -296,7 +296,7 @@ main (int argc, char **argv) atexit (close_stdout); - parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION, + parse_long_options (argc, argv, PROGRAM_NAME, PACKAGE, VERSION, AUTHORS, usage); have_read_stdin = 0; diff --git a/src/tsort.c b/src/tsort.c index 1052ffbbc..612713925 100644 --- a/src/tsort.c +++ b/src/tsort.c @@ -1,5 +1,5 @@ /* tsort - topological sort. - Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -556,7 +556,7 @@ main (int argc, char **argv) exit_status = 0; - parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION, + parse_long_options (argc, argv, PROGRAM_NAME, PACKAGE, VERSION, AUTHORS, usage); while ((opt = getopt_long (argc, argv, "", long_options, NULL)) != -1) |