diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2010-10-04 03:02:26 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-10-04 03:02:26 -0700 |
commit | 7e2bd591297679ef77fcfe6c380b3fca5aaf71f5 (patch) | |
tree | b337bd6155ff58a2f59a51a4110b81d26367c4e4 /sysroot.sh | |
parent | c21004b921c67b3e7748cc1f0c53d02deec1ebca (diff) |
Fix permissions in dpkg-deb and add du back to package.
Diffstat (limited to 'sysroot.sh')
-rwxr-xr-x | sysroot.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ wget -qO- "${repository}dists/${distribution}/${component}/binary-${architecture while IFS= read -r line; do if [[ ${line} == '' ]]; then package=${fields[package]} - if [[ ${package} == *(apr|apr-lib|apt7|apt7-lib|mobilesubstrate|pcre) ]]; then + if [[ ${package} == *(apr|apr-lib|apt7|apt7-lib|coreutils|mobilesubstrate|pcre) ]]; then filename=${fields[filename]} wget -O "${package}.deb" "${repository}${filename}" dpkg-deb -x "${package}.deb" . |