--instdir=<directory> Change inst'n root without changing admin dir\n\
-O|--selected-only Skip packages not selected for install/upgrade\n\
-E|--skip-same-version Skip packages whose same version is installed\n\
- -G=--refuse-downgrade Skip packages with earlier version than installed\n\
+ -G|--refuse-downgrade Skip packages with earlier version than installed\n\
-B|--auto-deconfigure Install even if it would break some other package\n\
--largemem | --smallmem Optimise for large (>4Mb) or small (<4Mb) RAM use\n\
--no-act Just say what we would do - don't do it\n\
}
static void usage(void) {
- if (fputs(_("\
+ if (printf(_("\
Usage: dpkg-split -s|--split <file> [<prefix>] Split an archive.\n\
dpkg-split -j|--join <part> <part> ... Join parts together.\n\
dpkg-split -I|--info <part> ... Display info about a part.\n\
dpkg-split -l|--listq List unmatched pieces.\n\
dpkg-split -d|--discard [<filename> ...] Discard unmatched pieces.\n\
\n\
-Options: --depotdir <directory> (default is " ADMINDIR "/" PARTSDIR ")\n\
+Options: --depotdir <directory> (default is %s/%s)\n\
-S|--partsize <size> (in Kb, for -s, default is 450)\n\
-o|--output <file> (for -j, default is <package>-<version>.deb)\n\
-Q|--npquiet (be quiet when -a is not a part)\n\
--msdos (generate 8.3 filenames)\n\
\n\
Exit status: 0 = OK; 1 = -a is not a part; 2 = trouble!\n"),
- stdout) < 0) werr("stdout");
+ ADMINDIR, PARTSDIR) < 0) werr("stdout");
}
const char thisname[]= SPLITTER;