diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2017-04-25 02:23:06 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2017-04-25 02:23:06 +0000 |
commit | 77b58a80ca62b85f920cdd55aeffbcbf699a7ce7 (patch) | |
tree | cca71a8db9a5c0ac5f4cbca2d6a8f21b094f1447 /databases/libcouchbase/files | |
parent | 492076a33259b6e6fd6a27826535342af133f7c4 (diff) |
Notes
Diffstat (limited to 'databases/libcouchbase/files')
-rw-r--r-- | databases/libcouchbase/files/patch-cmake_dtrace-instr-link.pl | 6 |
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); |