summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Install.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-02-11 13:24:09 +0000
committerfukachan <fukachan>2003-02-11 13:24:09 +0000
commit5cf20b2e4056710739cd2f7f71444b23e6600c74 (patch)
treee3cf458337b63bb2b551c52b3333c1f86b7e22e6 /fml/lib/FML/Install.pm
parent97262d67eeb776deb70f395bd5cbda48270f0bfc (diff)
downloadfml8-5cf20b2e4056710739cd2f7f71444b23e6600c74.tar.gz
fml8-5cf20b2e4056710739cd2f7f71444b23e6600c74.tar.bz2
fml8-5cf20b2e4056710739cd2f7f71444b23e6600c74.zip
define default value (null) for md5 checksum result
Diffstat (limited to 'fml/lib/FML/Install.pm')
-rw-r--r--fml/lib/FML/Install.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/fml/lib/FML/Install.pm b/fml/lib/FML/Install.pm
index d40afe09..38976958 100644
--- a/fml/lib/FML/Install.pm
+++ b/fml/lib/FML/Install.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: Install.pm,v 1.4 2003/01/29 14:21:05 fukachan Exp $
+# $FML: Install.pm,v 1.5 2003/01/30 03:32:12 fukachan Exp $
#
package FML::Install;
@@ -504,8 +504,8 @@ sub need_resymlink_loader
return 1;
}
- my $cur_sum = $self->md5( $cur_loader );
- my $new_sum = $self->md5( $loader );
+ my $cur_sum = $self->md5( $cur_loader ) || '';
+ my $new_sum = $self->md5( $loader ) || '';
# need to update loader.
if ($cur_sum ne $new_sum) {