diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2008-07-06 13:36:40 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2008-07-06 13:36:40 +0200 |
commit | d910a7b9ba41ea04ad40abe8c5ccd8db641d60b7 (patch) | |
tree | 0edf6f59d176ae6d924f99104286d6d6f917015e /bin/checklinks | |
parent | 573c5927c54c874398ba9f36e47bb663c279dc90 (diff) | |
parent | 8349537ef22013b811cd7e6afcb33ac4f1e1b8b2 (diff) |
Automated merge with file:///home/derf/var/packages_root/core
Diffstat (limited to 'bin/checklinks')
-rwxr-xr-x | bin/checklinks | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/checklinks b/bin/checklinks index 0b51e08..1342862 100755 --- a/bin/checklinks +++ b/bin/checklinks @@ -18,7 +18,7 @@ if (defined($ARGV[0]) and $ARGV[0] eq '-q') { open(LINKS, '<.links') or die($!); while(<LINKS>) { chomp; - ($type, $src, $dst) = split(/ +/); + ($type, $src, $dst) = split; if ($type eq 'soft') { check_symlink($src, $dst); } elsif ($type eq 'hard') { |