This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=e8ce6340e7729278331faf7133c609466a27f002 The following commit(s) were added to refs/heads/main by this push: new e8ce6340e dpkg-split: Revert switch to use DEBEXT for --help output e8ce6340e is described below commit e8ce6340e7729278331faf7133c609466a27f002 (HEAD -> main) Author: Guillem Jover <[email protected]> AuthorDate: Wed Oct 18 18:24:25 2023 +0200 dpkg-split: Revert switch to use DEBEXT for --help output We cannot use string concatenation via a macro in strings marked for translation that end up being parsed by xgettext, as the resulting msgid strings end up truncated. Restore the previous hardcoding, as using a format string makes the string to translate harder to understand, and instead we'll probably need to add a new macro to only contain the actual extension w/o the dot and use it via a format string, and unify all other messages too. Reported-by: Sven Joachim <[email protected]> Fixes: commit db1de20385ff04579ad3cb421e3dcc62f1df13f4 Changelog: silent --- src/split/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/split/main.c b/src/split/main.c index c6ae37402..eba2333c3 100644 --- a/src/split/main.c +++ b/src/split/main.c @@ -87,7 +87,7 @@ usage(const char *const *argv) " --root <directory> Use <directory> instead of %s.\n" " -S, --partsize <size> In KiB, for -s (default is 450).\n" " -o, --output <file> Filename, for -j (default is\n" -" <package>_<version>_<arch>" DEBEXT ").\n" +" <package>_<version>_<arch>.deb).\n" " -Q, --npquiet Be quiet when -a is not a part.\n" " --msdos Generate 8.3 filenames.\n" "\n"), ADMINDIR, PARTSDIR, ADMINDIR, "/"); -- Dpkg.Org's dpkg

