Unidiff1 files changed, 2 insertions, 0 deletions
|
diff --git a/mkipks b/mkipks index ec39dcb..73bff3c 100755 --- a/ mkipks+++ b/ mkipks |
|
@@ -143,16 +143,18 @@ do |
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 |
|