summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rwxr-xr-xmkipks16
1 files changed, 7 insertions, 9 deletions
diff --git a/mkipks b/mkipks
index af1bb4d..982a007 100755
--- a/mkipks
+++ b/mkipks
@@ -1,22 +1,19 @@
#!/bin/sh
QTE_VERSION=2.3.4
DEB_VERSION=2.0
# Have to do this here, since CVS can't store symlinks
-mkdir -p etc/rc2.d
-rm -f etc/rc2.d/S98opie
-ln -s ../init.d/opie etc/rc2.d/S98opie
+mkdir -p $OPIEDIR/etc/rc2.d
+ln -sf ../init.d/opie $OPIEDIR/etc/rc2.d/S98opie
-mkdir -p etc/rcS.d
-rm -f etc/rcS.d/S01bootsplash
-ln -s ../init.d/bootsplash etc/rcS.d/S01bootsplash
+mkdir -p $OPIEDIR/etc/rcS.d
+ln -sf ../init.d/bootsplash $OPIEDIR/etc/rcS.d/S01bootsplash
-rm -f ipaq/etc/rc2.d/S96opieatd
-ln -s ../init.d/opieatd ipaq/etc/rc2.d/S96opieatd
+ln -sf ../init.d/opieatd $OPIEDIR/ipaq/etc/rc2.d/S96opieatd
VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\..*\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h)
VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION ".*\.\([0-9]*\)\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h)
VERSION_PAT=$(sed -n -e 's/.*QPE_VERSION ".*\..*\.\([0-9]*\).*/\1/p' <$OPIEDIR/include/qpe/version.h)
@@ -89,12 +86,13 @@ fi
if [ -z "$FILES" ]
then
FILES=`find $OPIEDIR -name "*.control" -print`
fi
RDIR=$PWD
+ORIGDIR=`pwd`
cd $OPIEDIR
for i in $FILES
do
rm -rf $TDIR
@@ -229,13 +227,13 @@ do
then
cp ${base}.$pf $CTRLDIR/$pf
fi
done
if [ -z "$CLASSIC" ]
then
- $OPIEDIR/scripts/ipkg-build -o root -g root $TDIR
+ cd $ORIGDIR; $OPIEDIR/scripts/ipkg-build -o root -g root $TDIR; cd $OPIEDIR;
else
if [ "`id -u`" != "0" ]
then
if [ -z "$ROOTWARNED" ]
then
echo Warning. You are not root. Please become root or use fakeroot.