make sure the packages are sorted appropriately

This commit is contained in:
Steve McIntyre 2008-06-07 12:05:08 +00:00
parent 6a65e48806
commit 2b8dfe453a
1 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ update_full_list () {
/.*/ {
if (!in_packages) {
name=sprintf("(^| )%s(,|$)", $1)
tasklist[name] = 1
tasklist[name] = num_tasks
num_tasks++
}
}
@ -40,13 +40,13 @@ update_full_list () {
if (in_packages) {
for (taskname in tasklist) {
if (match($0, taskname)) {
print pkgname
printf("%d:%s\n", tasklist[taskname], pkgname)
next
}
}
}
next
}' | sort -u >> $file.new
}' | sort -n | cut -d: -f2 >> $file.new
mv $file.new $file
}