author | kergoth <kergoth> | 2003-04-17 21:29:39 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-04-17 21:29:39 (UTC) |
commit | 39c72eb2d35aecb3a057b347df5231d1dbfdd37c (patch) (side-by-side diff) | |
tree | 90aa6295492ce7a43d4cc510d3605ea9443418ab | |
parent | fabadbc7caba39006fcdda5167c29fa287e23cc3 (diff) | |
download | opie-39c72eb2d35aecb3a057b347df5231d1dbfdd37c.zip opie-39c72eb2d35aecb3a057b347df5231d1dbfdd37c.tar.gz opie-39c72eb2d35aecb3a057b347df5231d1dbfdd37c.tar.bz2 |
Kill filename field in mkipks, which was breaking us
-rwxr-xr-x | mkipks | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -201,49 +201,48 @@ do echo >>$SPEC "%description" sed -n -e '/^Description:/,$ p' $i | tail +2 >>$SPEC echo >>$SPEC "%files" echo >>$SPEC "%defattr(-,root,root)" /bin/ls $RPMFILES >>$SPEC rpm -bb --target $ARCH-unknown-linux $SPEC # rm $SPEC elif [ -z "$IMAGEDIR" ] then #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 echo "Package: $packagename" >$CTRLDIR/control if [ ! -z "$size" ]; then echo "Installed-Size: $size" >>$CTRLDIR/control else if [ -z "$SIZEWARNED" ] then echo "Warning, no mkfs.jffs2 found, unable to set Installed-Size." SIZEWARNED=1 fi fi echo "Architecture: $ARCH" >>$CTRLDIR/control - echo "Filename: ./$package.ipk" >>$CTRLDIR/control echo "Version: $version" >>$CTRLDIR/control [ ! -z "$depends" ] && echo "Depends: $depends" >>$CTRLDIR/control [ ! -z "$provides" ] && echo "Provides: $provides" >>$CTRLDIR/control [ ! -z "$conflicts" ] && echo "Conflicts: $conflicts" >>$CTRLDIR/control egrep -v "^(Files|Version|Depends|Provides|Conflicts|Architecture):" >>$CTRLDIR/control $i [ -n "$classicopts" ] && echo "$DEB_VERSION" >$TDIR/debian-binary base=${i%.control} scripts="preinst postinst prerm postrm" for pf in $scripts do if [ -e ${base}.$pf ] then cp ${base}.$pf $CTRLDIR/$pf chmod 755 $CTRLDIR/$pf fi done cd $ORIGDIR; $OPIEDIR/scripts/ipkg-build $classicopts -o root -g root $TDIR; cd $OPIEDIR; RESULT=$package.ipk if [ -n "$VERB" ] then echo >&2 "Built $RESULT ($size)" fi if [ -n "$LIST" ] then |