summaryrefslogtreecommitdiff
path: root/dgit
diff options
context:
space:
mode:
Diffstat (limited to 'dgit')
-rwxr-xr-xdgit10
1 files changed, 5 insertions, 5 deletions
diff --git a/dgit b/dgit
index 66b16bb..149345d 100755
--- a/dgit
+++ b/dgit
@@ -5850,7 +5850,7 @@ END
}
}
-sub unpack_playtree_mkwork ($) {
+sub unpack_playtree_mk_cd_work ($) {
my ($headref) = @_;
mkdir "work" or confess "$!";
@@ -5904,7 +5904,7 @@ sub quilt_fixup_singlepatch ($$$) {
# necessary to build the source package.
unpack_playtree_linkorigs($upstreamversion, sub { });
- unpack_playtree_mkwork($headref);
+ unpack_playtree_mk_cd_work($headref);
rmtree("debian/patches");
@@ -6026,7 +6026,7 @@ sub quilt_check_splitbrain_cache ($$) {
"refs/$splitbraincache", $splitbrain_cachekey;
if ($cachehit) {
- unpack_playtree_mkwork($headref);
+ unpack_playtree_mk_cd_work($headref);
my $saved = maybe_split_brain_save $headref, $cachehit, "cache-hit";
if ($cachehit ne $headref) {
progress f_ "dgit view: found cached (%s)", $saved;
@@ -6145,7 +6145,7 @@ END
changedir '..';
- unpack_playtree_mkwork($headref);
+ unpack_playtree_mk_cd_work($headref);
my $mustdeletepc=0;
if (stat_exists ".pc") {
@@ -6722,7 +6722,7 @@ sub build_source {
unless ($split_brain) {
my $upstreamversion = upstreamversion $version;
unpack_playtree_linkorigs($upstreamversion, sub { });
- unpack_playtree_mkwork($headref);
+ unpack_playtree_mk_cd_work($headref);
changedir '..';
}
} else {