author | kergoth <kergoth> | 2003-04-24 17:10:10 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-04-24 17:10:10 (UTC) |
commit | 786111b4ee9a950519d2ec36fabf0eb53c03770d (patch) (side-by-side diff) | |
tree | de055f5c4a5121490d0e2bb81c51ddaaf114b672 | |
parent | 9bedd27d07bcd1d9f2737f023e917f27499ba4b8 (diff) | |
download | opie-786111b4ee9a950519d2ec36fabf0eb53c03770d.zip opie-786111b4ee9a950519d2ec36fabf0eb53c03770d.tar.gz opie-786111b4ee9a950519d2ec36fabf0eb53c03770d.tar.bz2 |
Make mkipks check for existing Package field more explicit
-rwxr-xr-x | mkipks | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -212,9 +212,9 @@ do #size=$(du -h -s $DATADIR | sed -e 's/[ ].*//') if (which mkfs.jffs2 >/dev/null 2>&1); then size=$(mkfs.jffs2 -r $DATADIR | wc -c) fi - if ! (cat $i|grep -q ^Package); then + if ! (cat $i|grep -q ^Package:); then echo "Package: $packagename" >$CTRLDIR/control fi if [ ! -z "$size" ]; then echo "Installed-Size: $size" >>$CTRLDIR/control |