diff options
| author | Jim Meyering <jim@meyering.net> | 2001-12-02 22:26:57 +0000 |
|---|---|---|
| committer | Jim Meyering <jim@meyering.net> | 2001-12-02 22:26:57 +0000 |
| commit | f3ac2e783982387442dbd13cc30df0f41d52c779 (patch) | |
| tree | 3e3f11f12b41d0e8547b8dc950a7831e5d478840 /src/install.c | |
| parent | *** empty log message *** (diff) | |
| download | coreutils-f3ac2e783982387442dbd13cc30df0f41d52c779.tar.gz coreutils-f3ac2e783982387442dbd13cc30df0f41d52c779.zip | |
Use new macros, HELP_OPTION_DESCRIPTION and VERSION_OPTION_DESCRIPTION
instead of hard-coding --help and --version descriptions.
Diffstat (limited to 'src/install.c')
| -rw-r--r-- | src/install.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/install.c b/src/install.c index b0849fe9c..8efb2acb2 100644 --- a/src/install.c +++ b/src/install.c @@ -634,10 +634,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\ -S, --suffix=SUFFIX override the usual backup suffix\n\ -v, --verbose print the name of each directory as it is created\n\ "), stdout); - fputs (_("\ - --help display this help and exit\n\ - --version output version information and exit\n\ -"), stdout); + fputs (HELP_OPTION_DESCRIPTION, stdout); + fputs (VERSION_OPTION_DESCRIPTION, stdout); fputs (_("\ \n\ The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n\ |
