summaryrefslogtreecommitdiff
authorkergoth <kergoth>2003-04-22 18:50:52 (UTC)
committer kergoth <kergoth>2003-04-22 18:50:52 (UTC)
commit868ff4fcf16fea8a1f89c5b94e3acee18d224073 (patch) (unidiff)
tree6d96d46726a3ec74da219e5eb286a426c21ce5b6
parent1af9ae95fe7e3f58b1efc6f9bd1e8cf8f6f7481d (diff)
downloadopie-868ff4fcf16fea8a1f89c5b94e3acee18d224073.zip
opie-868ff4fcf16fea8a1f89c5b94e3acee18d224073.tar.gz
opie-868ff4fcf16fea8a1f89c5b94e3acee18d224073.tar.bz2
Alter mkipks to obey Packages field in a control file if its set, otherwise use filename
Diffstat (more/less context) (show whitespace changes)
-rwxr-xr-xmkipks4
1 files changed, 4 insertions, 0 deletions
diff --git a/mkipks b/mkipks
index 6a1d46e..ec5a659 100755
--- a/mkipks
+++ b/mkipks
@@ -211,7 +211,11 @@ do
211 if (which mkfs.jffs2 >/dev/null 2>&1); then 211 if (which mkfs.jffs2 >/dev/null 2>&1); then
212 size=$(mkfs.jffs2 -r $DATADIR | wc -c) 212 size=$(mkfs.jffs2 -r $DATADIR | wc -c)
213 fi 213 fi
214 if ! (cat $f|grep -q ^Package); then
214 echo "Package: $packagename" >$CTRLDIR/control 215 echo "Package: $packagename" >$CTRLDIR/control
216 else
217 cat $f|grep ^Package >$CTRLDIR/control
218 fi
215 if [ ! -z "$size" ]; then 219 if [ ! -z "$size" ]; then
216 echo "Installed-Size: $size" >>$CTRLDIR/control 220 echo "Installed-Size: $size" >>$CTRLDIR/control
217 else 221 else