aboutsummaryrefslogtreecommitdiff
path: root/SBO-Lib
diff options
context:
space:
mode:
authorAndreas Guldstrand <andreas.guldstrand@gmail.com>2015-11-26 04:31:29 +0100
committerAndreas Guldstrand <andreas.guldstrand@gmail.com>2015-11-26 04:31:29 +0100
commit960ee3a99d9323d114ebb424503d33b8b966bb7f (patch)
tree1aa5f0c13ffa64aea398cee894c51929e13d2248 /SBO-Lib
parentf4ae4ecab30efddd0e2d884defafa677778c4195 (diff)
downloadsbotools2-960ee3a99d9323d114ebb424503d33b8b966bb7f.tar.xz
Fix cleanup of correct dir
Diffstat (limited to 'SBO-Lib')
-rw-r--r--SBO-Lib/lib/SBO/Lib.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm
index 57a6c48..91bbfa7 100644
--- a/SBO-Lib/lib/SBO/Lib.pm
+++ b/SBO-Lib/lib/SBO/Lib.pm
@@ -891,7 +891,7 @@ sub make_clean {
my $src = $args{SRC};
say "Cleaning for $args{SBO}-$args{VERSION}...";
for my $dir (@$src) {
- remove_tree("$tempdir/$dir") if -d "$tempdir/$dir";
+ remove_tree("$tmpd/$dir") if -d "$tmpd/$dir";
}
remove_tree("$tmpd/package-$args{SBO}") if
-d "$tmpd/package-$args{SBO}";