Skip to content

Commit

Permalink
modify version strings to satisfy CMake's expectations
Browse files Browse the repository at this point in the history
closes #26
  • Loading branch information
rofl0r committed Aug 31, 2018
1 parent f733dd3 commit 9c1b862
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/msgfmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ static void syntax(void) {
__attribute__((noreturn))
static void version(void) {
fprintf(stdout,
"these are not (GNU gettext-tools) 99.9999.9999\n");
"msgfmt (GNU gettext-tools compatible) 99.9999.9999\n");
exit(0);
}

Expand Down
2 changes: 1 addition & 1 deletion src/msgmerge.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ static void syntax(void) {
__attribute__((noreturn))
static void version(void) {
fprintf(stdout,
"these are not (GNU gettext-tools) 99.9999.9999\n");
"msgmerge (GNU gettext-tools compatible) 99.9999.9999\n");
exit(0);
}

Expand Down
2 changes: 1 addition & 1 deletion src/xgettext.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ syntax() {
}

show_version() {
printf "%s\n", "these are not (GNU gettext-tools) 99.9999.9999\n"
printf "%s\n", "xgettext (GNU gettext-tools compatible) 99.9999.9999\n"
exit 0
}

Expand Down

0 comments on commit 9c1b862

Please sign in to comment.