From 53f670c33ad8609c9733aa8e8e3555091fdc9f87 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 19 Nov 2010 15:13:00 +0000 Subject: [PATCH 1/1] cat: Fix run-cat-locally script so it doesn't go via Perl. --- cat/run-cat-locally | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cat/run-cat-locally b/cat/run-cat-locally index 7945463..9467ad6 100755 --- 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); -- 1.8.3.1