diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2024-02-17 15:35:35 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2024-02-19 12:21:37 +0200 |
commit | 3462362ebd94d835c664e94ad8f414cfe7590ca7 (patch) | |
tree | 32ea2a52bed77f1b2d37a683c66b681e4f3a6860 /src/scripts/xzgrep.in | |
parent | CMake: Simplify symlink creation and install translated man pages. (diff) | |
download | xz-3462362ebd94d835c664e94ad8f414cfe7590ca7.tar.xz |
Scripts: Use @PACKAGE_VERSION@ instead of @VERSION@.
PACKAGE_VERSION was already used in liblzma.pc.in.
This way only one version @foo@ is used.
Diffstat (limited to 'src/scripts/xzgrep.in')
-rw-r--r-- | src/scripts/xzgrep.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/xzgrep.in b/src/scripts/xzgrep.in index 74add3e0..dad51ca4 100644 --- a/src/scripts/xzgrep.in +++ b/src/scripts/xzgrep.in @@ -35,7 +35,7 @@ case ${0##*/} in *) prog=xzgrep; grep=${GREP:-grep};; esac -version="$prog (@PACKAGE_NAME@) @VERSION@" +version="$prog (@PACKAGE_NAME@) @PACKAGE_VERSION@" usage="Usage: ${0##*/} [OPTION]... [-e] PATTERN [FILE]... Look for instances of PATTERN in the input FILEs, using their |