summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2015-02-07 20:41:46 +0100
committerGuillem Jover <guillem@debian.org>2015-02-11 04:42:41 +0100
commitc3972f49f90ed4cc94421c4be5af523df7dd23c4 (patch)
treed2b61cafceef51e9b1d4651c38cb37bbdecec7b5
parentdfb3c1b8f54352b3db05494ff408d42ead808ef6 (diff)
downloaddpkg-c3972f49f90ed4cc94421c4be5af523df7dd23c4.tar.gz
dpkg-deb: Fix compressor subprocess name
This has not been a gzip-only compressor for a long time, update the code to reflect this.
-rw-r--r--dpkg-deb/build.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dpkg-deb/build.c b/dpkg-deb/build.c
index 33353f41e..f18c27245 100644
--- a/dpkg-deb/build.c
+++ b/dpkg-deb/build.c
@@ -533,7 +533,7 @@ do_build(const char *const *argv)
exit(0);
}
close(p1[0]);
- subproc_reap(c2, "gzip -9c", 0);
+ subproc_reap(c2, _("<compress> from tar -cf"), 0);
subproc_reap(c1, "tar -cf", 0);
if (lseek(gzfd, 0, SEEK_SET))
@@ -619,7 +619,7 @@ do_build(const char *const *argv)
* filenames to tar. */
file_treewalk_feed(dir, p1[1]);
- /* All done, clean up wait for tar and gzip to finish their job. */
+ /* All done, clean up wait for tar and <compress> to finish their job. */
close(p1[1]);
subproc_reap(c2, _("<compress> from tar -cf"), 0);
subproc_reap(c1, "tar -cf", 0);