mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-15 13:55:09 -05:00
Move filelist creation ABOVE the other metafiles to keep them out of the list
This commit is contained in:
parent
4cd65c0a31
commit
010f35f299
@ -861,6 +861,11 @@ else
|
||||
fi
|
||||
size=$(du -cb $startdir/pkg | tail -n 1 | awk '{print $1}')
|
||||
|
||||
# build a filelist - do this first to keep meta files out of the list
|
||||
msg "Generating .FILELIST file..."
|
||||
cd "$startdir/pkg"
|
||||
tar cvf /dev/null * | sort >.FILELIST
|
||||
|
||||
# write the .PKGINFO file
|
||||
msg "Generating .PKGINFO file..."
|
||||
cd $startdir/pkg
|
||||
@ -914,11 +919,6 @@ if [ -f "$startdir/ChangeLog" ]; then
|
||||
have_changelog=1
|
||||
fi
|
||||
|
||||
# build a filelist
|
||||
msg "Generating .FILELIST file..."
|
||||
cd "$startdir/pkg"
|
||||
tar cvf /dev/null * | sort >.FILELIST
|
||||
|
||||
# tar it up
|
||||
msg "Compressing package..."
|
||||
cd "$startdir/pkg"
|
||||
|
Loading…
Reference in New Issue
Block a user