summaryrefslogtreecommitdiff
path: root/elpa.pm
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2016-09-06 20:35:03 -0700
committerSean Whitton <spwhitton@spwhitton.name>2016-09-06 20:35:03 -0700
commit295de0d28f09f1b7052fb7284176a8478fa62b3d (patch)
tree88c561ee98bf842bb48ae8f6b9d2e5851d7f432e /elpa.pm
parent9911e2cf4cc44264099ba8cca4c93ad5f21bcdb6 (diff)
fix version comparison in elpa.pm
The string representation of 0.90 is "0.9" which is a lower version than 0.77 (the version in jessie which the comparison is meant to exclude).
Diffstat (limited to 'elpa.pm')
-rwxr-xr-xelpa.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/elpa.pm b/elpa.pm
index d6e3126..a43f395 100755
--- a/elpa.pm
+++ b/elpa.pm
@@ -18,7 +18,7 @@ my $options;
$options = Config::Tiny->read( "debian/elpa-test" )
if ( -f "debian/elpa-test" );
-if ( $version >= 0.90
+if ( $version >= "0.90"
&& !defined $options->{_}->{ "disable" }
&& !defined $ENV{ 'DH_ELPA_TEST_DISABLE' }
) {