author | kergoth <kergoth> | 2003-01-24 05:48:05 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-01-24 05:48:05 (UTC) |
commit | 4495fda0ab1d48800c6101ec635bafb70ebd07f1 (patch) (side-by-side diff) | |
tree | d848b34e0bfe2c89bb664a92934128e6deca4e36 | |
parent | 53b0504f955d22600f3123f0837b0a0541453fca (diff) | |
download | opie-4495fda0ab1d48800c6101ec635bafb70ebd07f1.zip opie-4495fda0ab1d48800c6101ec635bafb70ebd07f1.tar.gz opie-4495fda0ab1d48800c6101ec635bafb70ebd07f1.tar.bz2 |
Correct a minor bug.. now it uses -e instead of -x to check for the pre/post scripts, and chmod 755's them after cp'ing, in case the permissions are hosed.
-rwxr-xr-x | mkipks | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -211,19 +211,20 @@ do [ ! -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 [ -x ${base}.$pf ] + 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 |