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
@@ -215,11 +215,12 @@ do 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 |