summaryrefslogtreecommitdiff
path: root/Debian/Debhelper
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2011-05-27 09:39:08 -0400
committerJoey Hess <joey@kitenet.net>2011-05-27 09:39:08 -0400
commit9a43d7dbf76c71949b98522f0a80f05e1115a3d6 (patch)
tree8513e898cc990ce6792ce3db8d642dbd6c405e8b /Debian/Debhelper
parent5e13cc10b6c899fa143b76d4b312b7cdb2e39d08 (diff)
Fix error message. Closes: #628053
Diffstat (limited to 'Debian/Debhelper')
-rw-r--r--Debian/Debhelper/Dh_Lib.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm
index dcba4d24..51b53d3e 100644
--- a/Debian/Debhelper/Dh_Lib.pm
+++ b/Debian/Debhelper/Dh_Lib.pm
@@ -609,7 +609,7 @@ sub filedoublearray {
my $globdir=shift;
my @ret;
- open (DH_FARRAY_IN, $file) || error("cannot read $file: $1");
+ open (DH_FARRAY_IN, $file) || error("cannot read $file: $!");
while (<DH_FARRAY_IN>) {
chomp;
# Only ignore comments and empty lines in v5 mode.