aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/scripts/buildpackage.py
diff options
context:
space:
mode:
authorAndreas Beckmann <anbe@debian.org>2018-09-06 14:49:16 +0200
committerGuido Günther <agx@sigxcpu.org>2018-09-21 13:32:23 +0200
commite47b2a69800edf4229551f9ee341e98732694f37 (patch)
treeeeda7e102c2fff419d21145dbd1e1cb0232c8ffe /gbp/scripts/buildpackage.py
parenta656995e942042cb2bdfa224ddeb8cd54e27694a (diff)
buildpackage: Unify 'extract' messages
Gbp-Dch: Ignore
Diffstat (limited to 'gbp/scripts/buildpackage.py')
-rwxr-xr-xgbp/scripts/buildpackage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gbp/scripts/buildpackage.py b/gbp/scripts/buildpackage.py
index b055f8d5..d345b468 100755
--- a/gbp/scripts/buildpackage.py
+++ b/gbp/scripts/buildpackage.py
@@ -111,7 +111,7 @@ def overlay_extract_origs(source, tarball_dir, dest_dir, options):
repo=None,
tarball_dir=tarball_dir)
tarball = os.path.join(tarball_dir, source.upstream_tarball_name(comp_type))
- gbp.log.info("Extracting %s to '%s'" % (os.path.basename(tarball), dest_dir))
+ gbp.log.info("Extracting '%s' to '%s'" % (os.path.basename(tarball), dest_dir))
move_old_export(dest_dir)
upstream = DebianUpstreamSource(tarball)
@@ -140,7 +140,7 @@ def overlay_extract_origs(source, tarball_dir, dest_dir, options):
for c in options.components:
tarball = os.path.join(tarball_dir, source.upstream_tarball_name(
comp_type, component=c))
- gbp.log.info("Unpacking '%s' to '%s'" % (os.path.basename(tarball), dest_dir))
+ gbp.log.info("Extracting '%s' to '%s/%s'" % (os.path.basename(tarball), dest_dir, c))
unpack_component_tarball(dest_dir, c, tarball, [])