Fix spurious chars passed to grep in extract_distfiles().

--HG--
extra : convert_revision : 6f1f9ca0640b8cbb0dcb8ef7f42046566d479fc0
This commit is contained in:
Juan RP 2008-10-29 18:37:04 +01:00
parent 2cb592e66e
commit 5803db23a3
1 changed files with 2 additions and 2 deletions

View File

@ -379,9 +379,9 @@ extract_distfiles()
cursufx=".tar.gz"
elif $(echo $f|grep -q '.tgz'); then
cursufx=".tgz"
elif $(echo $f|grep -q '.tar)'); then
elif $(echo $f|grep -q '.tar'); then
cursufx=".tar"
elif $(echo $f|grep -q '.zip)'); then
elif $(echo $f|grep -q '.zip'); then
cursufx=".zip"
else
msg_error "unknown distfile suffix"