aboutsummaryrefslogtreecommitdiff
path: root/databases/libcouchbase
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2017-04-25 02:23:06 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2017-04-25 02:23:06 +0000
commit77b58a80ca62b85f920cdd55aeffbcbf699a7ce7 (patch)
treecca71a8db9a5c0ac5f4cbca2d6a8f21b094f1447 /databases/libcouchbase
parent492076a33259b6e6fd6a27826535342af133f7c4 (diff)
downloadports-77b58a80ca62b85f920cdd55aeffbcbf699a7ce7.tar.gz
ports-77b58a80ca62b85f920cdd55aeffbcbf699a7ce7.zip
Notes
Diffstat (limited to 'databases/libcouchbase')
-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);