author | kergoth <kergoth> | 2003-01-24 02:26:29 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-01-24 02:26:29 (UTC) |
commit | 8b2c18bb978c58de817ee163715f1e21982380a0 (patch) (unidiff) | |
tree | 6f8ab2a4778292d3cd3f9fbd6d5bf74c46f034a5 /mkipks | |
parent | 039367f738688f9484a487db8720a5bd2ad5878f (diff) | |
download | opie-8b2c18bb978c58de817ee163715f1e21982380a0.zip opie-8b2c18bb978c58de817ee163715f1e21982380a0.tar.gz opie-8b2c18bb978c58de817ee163715f1e21982380a0.tar.bz2 |
Adjust package builds to handle the new lib paths
-rwxr-xr-x | mkipks | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -118,24 +118,28 @@ do | |||
118 | */CVS/*) | 118 | */CVS/*) |
119 | continue | 119 | continue |
120 | ;;*~) | 120 | ;;*~) |
121 | continue | 121 | continue |
122 | ;;*.control) | 122 | ;;*.control) |
123 | continue | 123 | continue |
124 | ;; $QTDIR/*) | 124 | ;; $QTDIR/*) |
125 | BASE=$(dirname /opt/QtPalmtop/${ff#$QTDIR/}) | 125 | BASE=$(dirname /opt/QtPalmtop/${ff#$QTDIR/}) |
126 | ;; etc/*.d/*) | 126 | ;; etc/*.d/*) |
127 | BASE=$(dirname /$ff) | 127 | BASE=$(dirname /$ff) |
128 | ;; root/*) | 128 | ;; root/*) |
129 | BASE=$(dirname ${ff#root}) | 129 | BASE=$(dirname ${ff#root}) |
130 | ;; lib/*) | ||
131 | BASE=$(dirname /opt/QtPalmtop/$ff) | ||
132 | ;; $OPIEDIR/lib/*) | ||
133 | BASE=$(dirname /opt/QtPalmtop/${ff#$OPIEDIR/}) | ||
130 | ;; *) | 134 | ;; *) |
131 | # For SHARP ROM compatibility. Should change to Qtopia. | 135 | # For SHARP ROM compatibility. Should change to Qtopia. |
132 | BASE=/opt/QtPalmtop/$(dirname $ff) | 136 | BASE=/opt/QtPalmtop/$(dirname $ff) |
133 | esac | 137 | esac |
134 | 138 | ||
135 | if [ -f $ff -o -b $ff -o -c $ff ] | 139 | if [ -f $ff -o -b $ff -o -c $ff ] |
136 | then | 140 | then |
137 | D=$DATADIR$BASE | 141 | D=$DATADIR$BASE |
138 | if [ -x $ff -a -n "$STRIP" ] | 142 | if [ -x $ff -a -n "$STRIP" ] |
139 | then | 143 | then |
140 | case $(file $ff) in | 144 | case $(file $ff) in |
141 | $STRIP_FILES) | 145 | $STRIP_FILES) |