git.annexia.org
/
libguestfs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3bd883f
)
cat: Fix run-cat-locally script so it doesn't go via Perl.
author
Richard W.M. Jones
<rjones@redhat.com>
Fri, 19 Nov 2010 15:13:00 +0000
(15:13 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Fri, 19 Nov 2010 15:13:36 +0000
(15:13 +0000)
cat/run-cat-locally
patch
|
blob
|
history
diff --git
a/cat/run-cat-locally
b/cat/run-cat-locally
index
7945463
..
9467ad6
100755
(executable)
--- a/
cat/run-cat-locally
+++ b/
cat/run-cat-locally
@@
-50,4
+50,4
@@
$ENV{LD_LIBRARY_PATH} = $path.'/src/.libs';
$ENV{LIBGUESTFS_PATH} = $path.'/appliance';
#print (join " ", ("$path/$tool/virt-$tool", @ARGV), "\n");
-exec(
'perl',
"$path/$tool/virt-$tool", @ARGV);
+exec("$path/$tool/virt-$tool", @ARGV);