diff options
author | joey <joey> | 1999-08-17 05:09:33 +0000 |
---|---|---|
committer | joey <joey> | 1999-08-17 05:09:33 +0000 |
commit | 7e30b95a60b9197618c6223388d2c49bee13c2c6 (patch) | |
tree | e4d93d173cda83d320aa95b13b329bed2898a93a /Dh_Lib.pm | |
parent | 36411bfcb72fc17c6aa0f3b11cdd04e52828db98 (diff) | |
download | debhelper-7e30b95a60b9197618c6223388d2c49bee13c2c6.tar.gz |
r170: Initial Import
Diffstat (limited to 'Dh_Lib.pm')
-rw-r--r-- | Dh_Lib.pm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -261,7 +261,7 @@ sub filearray { my $file=shift; my @ret; open (DH_FARRAY_IN,"<$file") || error("cannot read $file: $1"); while (<DH_FARRAY_IN>) { - push @ret,split(/\s/,$_); + push @ret,split(' ',$_); } close DH_FARRAY_IN; |