X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=rescue%2Frun-rescue-locally;h=95f3cc4a7b66fe1469cad0be7ef8b7d53835755c;hb=a6cb8fee205b1615d380456964bebe40bd840fb1;hp=18097cf96c207055e8197726f860093fbcd8edd3;hpb=5d01670e31ef3259fb1fc84a83ab27aec8fdac0b;p=libguestfs.git diff --git a/rescue/run-rescue-locally b/rescue/run-rescue-locally index 18097cf..95f3cc4 100755 --- a/rescue/run-rescue-locally +++ b/rescue/run-rescue-locally @@ -1,5 +1,4 @@ #!/usr/bin/perl -# virt-rescue # Copyright (C) 2009 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify @@ -16,9 +15,9 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -# This script sets up the environment so you can run virt-rescue in +# This script sets up the environment so you can run virt-* tools in # place without needing to do 'make install' first. You can also run -# virt-rescue by creating a symlink to this script and putting it in +# the tools by creating a symlink to this script and putting it in # your path. # # Use it like this: @@ -48,6 +47,6 @@ $path = abs_path(dirname($path).'/..'); $ENV{LD_LIBRARY_PATH} = $path.'/src/.libs'; $ENV{LIBGUESTFS_PATH} = $path.'/appliance'; -$ENV{PERL5LIB} = $path.'/perl/blib/lib:'.$path.'/perl/blib/arch'; -exec('perl', $path.'/rescue/virt-rescue', @ARGV); +#print (join " ", ("$path/rescue/virt-rescue", @ARGV), "\n"); +exec("$path/rescue/virt-rescue", @ARGV);