summaryrefslogtreecommitdiff
path: root/mkipks
authorkergoth <kergoth>2003-01-24 05:48:05 (UTC)
committer kergoth <kergoth>2003-01-24 05:48:05 (UTC)
commit4495fda0ab1d48800c6101ec635bafb70ebd07f1 (patch) (side-by-side diff)
treed848b34e0bfe2c89bb664a92934128e6deca4e36 /mkipks
parent53b0504f955d22600f3123f0837b0a0541453fca (diff)
downloadopie-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.
Diffstat (limited to 'mkipks') (more/less context) (ignore whitespace changes)
-rwxr-xr-xmkipks3
1 files changed, 2 insertions, 1 deletions
diff --git a/mkipks b/mkipks
index 4685f5f..ffa4ef5 100755
--- a/mkipks
+++ b/mkipks
@@ -216,9 +216,10 @@ do
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;