author | kergoth <kergoth> | 2003-04-23 20:52:52 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-04-23 20:52:52 (UTC) |
commit | e3428ff385782fd0d61acb0d08b147f0f0d430a7 (patch) (unidiff) | |
tree | 489e56df65a0a7717a8a45905520aa90f0c619a7 | |
parent | ef6d0c5cb053d2140ffbcf54930dcfddd6341acd (diff) | |
download | opie-e3428ff385782fd0d61acb0d08b147f0f0d430a7.zip opie-e3428ff385782fd0d61acb0d08b147f0f0d430a7.tar.gz opie-e3428ff385782fd0d61acb0d08b147f0f0d430a7.tar.bz2 |
Handle OPIEDIR/root/* in Files
-rwxr-xr-x | mkipks | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -127,48 +127,50 @@ do | |||
127 | then | 127 | then |
128 | ffiles=$(find $f -type f -o -type b -o -type c -o -type l) | 128 | ffiles=$(find $f -type f -o -type b -o -type c -o -type l) |
129 | else | 129 | else |
130 | ffiles=$f | 130 | ffiles=$f |
131 | fi | 131 | fi |
132 | for ff in $ffiles | 132 | for ff in $ffiles |
133 | do | 133 | do |
134 | case $ff in | 134 | case $ff in |
135 | */CVS/*) | 135 | */CVS/*) |
136 | continue | 136 | continue |
137 | ;;*~) | 137 | ;;*~) |
138 | continue | 138 | continue |
139 | ;;*.control) | 139 | ;;*.control) |
140 | continue | 140 | continue |
141 | ;; $QTDIR/*) | 141 | ;; $QTDIR/*) |
142 | BASE=$(dirname /opt/QtPalmtop/${ff#$QTDIR/}) | 142 | BASE=$(dirname /opt/QtPalmtop/${ff#$QTDIR/}) |
143 | ;; etc/*.d/*) | 143 | ;; etc/*.d/*) |
144 | BASE=$(dirname /$ff) | 144 | BASE=$(dirname /$ff) |
145 | ;; root/*) | 145 | ;; root/*) |
146 | BASE=$(dirname ${ff#root}) | 146 | BASE=$(dirname ${ff#root}) |
147 | ;; lib/*) | 147 | ;; lib/*) |
148 | BASE=$(dirname /opt/QtPalmtop/$ff) | 148 | BASE=$(dirname /opt/QtPalmtop/$ff) |
149 | ;; $OPIEDIR/lib/*) | 149 | ;; $OPIEDIR/lib/*) |
150 | BASE=$(dirname /opt/QtPalmtop/${ff#$OPIEDIR/}) | 150 | BASE=$(dirname /opt/QtPalmtop/${ff#$OPIEDIR/}) |
151 | ;; $OPIEDIR/root/*) | ||
152 | BASE=$(dirname /${ff#$OPIEDIR/root/}) | ||
151 | ;; *) | 153 | ;; *) |
152 | # For SHARP ROM compatibility. Should change to Qtopia. | 154 | # For SHARP ROM compatibility. Should change to Qtopia. |
153 | BASE=/opt/QtPalmtop/$(dirname $ff) | 155 | BASE=/opt/QtPalmtop/$(dirname $ff) |
154 | esac | 156 | esac |
155 | 157 | ||
156 | if [ -f $ff -o -b $ff -o -c $ff ] | 158 | if [ -f $ff -o -b $ff -o -c $ff ] |
157 | then | 159 | then |
158 | D=$DATADIR$BASE | 160 | D=$DATADIR$BASE |
159 | if [ -x $ff -a -n "$STRIP" ] | 161 | if [ -x $ff -a -n "$STRIP" ] |
160 | then | 162 | then |
161 | case $(file $ff) in | 163 | case $(file $ff) in |
162 | $STRIP_FILES) | 164 | $STRIP_FILES) |
163 | $STRIP $ff | 165 | $STRIP $ff |
164 | ;; *) | 166 | ;; *) |
165 | esac | 167 | esac |
166 | fi | 168 | fi |
167 | if [ -n "$RPM" ] | 169 | if [ -n "$RPM" ] |
168 | then | 170 | then |
169 | case "$ff" in | 171 | case "$ff" in |
170 | /*) RPMFILES="$RPMFILES $ff" | 172 | /*) RPMFILES="$RPMFILES $ff" |
171 | ;; *) RPMFILES="$RPMFILES $OPIEDIR/$ff" | 173 | ;; *) RPMFILES="$RPMFILES $OPIEDIR/$ff" |
172 | esac | 174 | esac |
173 | else | 175 | else |
174 | mkdir -p $D | 176 | mkdir -p $D |