Skip to content

Commit 9c1b862

Browse files
committed
modify version strings to satisfy CMake's expectations
closes #26
1 parent f733dd3 commit 9c1b862

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/msgfmt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ static void syntax(void) {
2121
__attribute__((noreturn))
2222
static void version(void) {
2323
fprintf(stdout,
24-
"these are not (GNU gettext-tools) 99.9999.9999\n");
24+
"msgfmt (GNU gettext-tools compatible) 99.9999.9999\n");
2525
exit(0);
2626
}
2727

src/msgmerge.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ static void syntax(void) {
1818
__attribute__((noreturn))
1919
static void version(void) {
2020
fprintf(stdout,
21-
"these are not (GNU gettext-tools) 99.9999.9999\n");
21+
"msgmerge (GNU gettext-tools compatible) 99.9999.9999\n");
2222
exit(0);
2323
}
2424

src/xgettext.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ syntax() {
1616
}
1717

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

0 commit comments

Comments
 (0)