summaryrefslogtreecommitdiff
path: root/odk/configure.pl
diff options
context:
space:
mode:
Diffstat (limited to 'odk/configure.pl')
-rw-r--r--odk/configure.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/odk/configure.pl b/odk/configure.pl
index 1a42c921e54b..8cd2a54978dd 100644
--- a/odk/configure.pl
+++ b/odk/configure.pl
@@ -743,12 +743,12 @@ sub testVersion
for ($i=0; $i <= $length; $i++ )
{
- if ( @testVersion->[$i] > @mustBeVersion->[$i] )
+ if ( $testVersion[$i] > $mustBeVersion[$i] )
{
return 1; # 1 indicates a correct version
}
- if ( @testVersion->[$i] < @mustBeVersion->[$i] )
+ if ( $testVersion[$i] < $mustBeVersion[$i] )
{
if ( $#checkOnly == 1 ) {
print " The command '$toolName' has the version $tmpTestVersion.\n";