summaryrefslogtreecommitdiff
path: root/databases/libcouchbase/files/patch-cmake_dtrace-instr-link.pl
diff options
context:
space:
mode:
Diffstat (limited to 'databases/libcouchbase/files/patch-cmake_dtrace-instr-link.pl')
-rw-r--r--databases/libcouchbase/files/patch-cmake_dtrace-instr-link.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/libcouchbase/files/patch-cmake_dtrace-instr-link.pl b/databases/libcouchbase/files/patch-cmake_dtrace-instr-link.pl
index 8bf549873458..743fcee62d20 100644
--- a/databases/libcouchbase/files/patch-cmake_dtrace-instr-link.pl
+++ b/databases/libcouchbase/files/patch-cmake_dtrace-instr-link.pl
@@ -16,7 +16,7 @@
+# Copy .o files to a temporary location before DTrace messes with them
+chomp(my $tmpdir = `mktemp -d -t $$`);
+if (system("tar cf - @O_FILES | tar xf - -C $tmpdir") != 0) {
-+ system("rm -rf $tmpdir");
++ system("rm -r $tmpdir");
+ exit(1);
+}
+
@@ -38,7 +38,7 @@
print "$HDR: Creating instrumented DTrace object: @args";
if (system(@args) != 0) {
-+ system("rm -rf $tmpdir");
++ system("rm -r $tmpdir");
exit(1);
}
@@ -47,5 +47,5 @@
print "$HDR: Linking with instrumented DTrace object: @ARGV";
-exit(system(@ARGV));
+my $rc = system(@ARGV);
-+system("rm -rf $tmpdir");
++system("rm -r $tmpdir");
+exit($rc);