msys2 correct awk statement

Files are not always at field 15, they are always last field though.
This commit is contained in:
Steven Penny 2014-05-25 13:17:39 -05:00
parent 1ff704ed38
commit 530e70c1f7
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ apt-listfiles () {
do
awk '
$2 == "%NAME%\n" pkg {
print $15
print $NF
}
' pkg=$pkg RS=%FILENAME% FS='\n\n' mingw64.lst
done |