diff options
author | Guillem Jover <guillem@debian.org> | 2012-04-14 04:33:14 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2012-04-14 09:16:03 +0200 |
commit | c627c85d54a292aea3dc083d8871783cb0825806 (patch) | |
tree | 9f50d9e59ed9528d64b9c8849600293260548492 | |
parent | a354992c67411ed10499786012701faa33ed8565 (diff) | |
download | dpkg-c627c85d54a292aea3dc083d8871783cb0825806.tar.gz |
dpkg-deb: Do not arch-qualify package name on output
There's no point in arch-qualifying the package name when printing it
on build from dpkg-deb, as it does not need to be distinguished and the
filename is informative and unique enough already.
-rw-r--r-- | dpkg-deb/build.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dpkg-deb/build.c b/dpkg-deb/build.c index d44b3a64e..0bc2fd581 100644 --- a/dpkg-deb/build.c +++ b/dpkg-deb/build.c @@ -438,7 +438,7 @@ do_build(const char *const *argv) if (subdir) debar = pkg_get_pathname(debar, pkg); printf(_("dpkg-deb: building package `%s' in `%s'.\n"), - pkgbin_name(pkg, &pkg->available, pnaw_nonambig), debar); + pkg->set->name, debar); } m_output(stdout, _("<standard output>")); |