author | kergoth <kergoth> | 2002-09-22 22:19:53 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-09-22 22:19:53 (UTC) |
commit | 3049d9418b882283814ca71baa98420b2a6745db (patch) (unidiff) | |
tree | 33d42d9e076b995cdb7a45603fe59f88dfc2025a | |
parent | 3f194c85b5b9243ff30f1067361ef9fa5bb85a1e (diff) | |
download | opie-3049d9418b882283814ca71baa98420b2a6745db.zip opie-3049d9418b882283814ca71baa98420b2a6745db.tar.gz opie-3049d9418b882283814ca71baa98420b2a6745db.tar.bz2 |
Changed a couple minor paths to allow one to run mkipks from somewhere other than
-rwxr-xr-x | mkipks | 16 |
1 files changed, 7 insertions, 9 deletions
@@ -5,14 +5,11 @@ DEB_VERSION=2.0 | |||
5 | 5 | ||
6 | # Have to do this here, since CVS can't store symlinks | 6 | # Have to do this here, since CVS can't store symlinks |
7 | mkdir -p etc/rc2.d | 7 | mkdir -p $OPIEDIR/etc/rc2.d |
8 | rm -f etc/rc2.d/S98opie | 8 | ln -sf ../init.d/opie $OPIEDIR/etc/rc2.d/S98opie |
9 | ln -s ../init.d/opie etc/rc2.d/S98opie | ||
10 | 9 | ||
11 | mkdir -p etc/rcS.d | 10 | mkdir -p $OPIEDIR/etc/rcS.d |
12 | rm -f etc/rcS.d/S01bootsplash | 11 | ln -sf ../init.d/bootsplash $OPIEDIR/etc/rcS.d/S01bootsplash |
13 | ln -s ../init.d/bootsplash etc/rcS.d/S01bootsplash | ||
14 | 12 | ||
15 | rm -f ipaq/etc/rc2.d/S96opieatd | 13 | ln -sf ../init.d/opieatd $OPIEDIR/ipaq/etc/rc2.d/S96opieatd |
16 | ln -s ../init.d/opieatd ipaq/etc/rc2.d/S96opieatd | ||
17 | 14 | ||
18 | 15 | ||
@@ -93,4 +90,5 @@ fi | |||
93 | 90 | ||
94 | RDIR=$PWD | 91 | RDIR=$PWD |
92 | ORIGDIR=`pwd` | ||
95 | cd $OPIEDIR | 93 | cd $OPIEDIR |
96 | 94 | ||
@@ -233,5 +231,5 @@ do | |||
233 | if [ -z "$CLASSIC" ] | 231 | if [ -z "$CLASSIC" ] |
234 | then | 232 | then |
235 | $OPIEDIR/scripts/ipkg-build -o root -g root $TDIR | 233 | cd $ORIGDIR; $OPIEDIR/scripts/ipkg-build -o root -g root $TDIR; cd $OPIEDIR; |
236 | else | 234 | else |
237 | if [ "`id -u`" != "0" ] | 235 | if [ "`id -u`" != "0" ] |