Peter Maydell wrote:
On 30 December 2011 23:59, Sebastian Herbszt <herb...@gmx.de> wrote:
Make python mandatory.
+if has $python; then
+ :
+else
+ echo "Python not found. Use --python=/path/to/python"
+ exit 1
fi
if test -z "$target_list" ; then
I know you've just removed the outer condition here, but
while we're fiddling with it, wouldn't
if ! has "$python"; then
echo "Python not found etc"
fi
be better?
-- PMM
I just restored it to the state it was before commit "guest agent: add
--enable-guest-agent config option".
This check was added in commit "Let users select their pythons".
Sebastian