author | kergoth <kergoth> | 2003-01-24 05:48:05 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-01-24 05:48:05 (UTC) |
commit | 4495fda0ab1d48800c6101ec635bafb70ebd07f1 (patch) (unidiff) | |
tree | d848b34e0bfe2c89bb664a92934128e6deca4e36 /mkipks | |
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 | |||
215 | base=${i%.control} | 215 | base=${i%.control} |
216 | scripts="preinst postinst prerm postrm" | 216 | scripts="preinst postinst prerm postrm" |
217 | for pf in $scripts | 217 | for pf in $scripts |
218 | do | 218 | do |
219 | if [ -x ${base}.$pf ] | 219 | if [ -e ${base}.$pf ] |
220 | then | 220 | then |
221 | cp ${base}.$pf $CTRLDIR/$pf | 221 | cp ${base}.$pf $CTRLDIR/$pf |
222 | chmod 755 $CTRLDIR/$pf | ||
222 | fi | 223 | fi |
223 | done | 224 | done |
224 | cd $ORIGDIR; $OPIEDIR/scripts/ipkg-build $classicopts -o root -g root $TDIR; cd $OPIEDIR; | 225 | cd $ORIGDIR; $OPIEDIR/scripts/ipkg-build $classicopts -o root -g root $TDIR; cd $OPIEDIR; |
225 | RESULT=$package.ipk | 226 | RESULT=$package.ipk |