Author: jkeenan
Date: Sun Mar 25 14:16:39 2007
New Revision: 17742
Modified:
branches/reconfigure/Configure.pl
Log:
process_options() now returns undef in case of --help or --version. So this
return value is tested and the script exits if it is undefined.
Modified: branches/reconfigure/Configure.pl
==============================================================================
--- branches/reconfigure/Configure.pl (original)
+++ branches/reconfigure/Configure.pl Sun Mar 25 14:16:39 2007
@@ -38,6 +38,7 @@
parrot_version => $parrot_version,
svnid => '$Id$',
} );
+exit unless defined $args;
my %args = %$args;