1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 Gentoo Foundation |
2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.9 2005/01/15 13:44:31 eradicator Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.28 2005/07/06 20:20:04 agriffis Exp $ |
4 | # |
4 | # |
5 | # Author: Jeremy Huddleston <eradicator@gentoo.org> |
5 | # Author: Jeremy Huddleston <eradicator@gentoo.org> |
6 | # |
6 | # |
7 | # This eclass is for all functions pertaining to handling multilib. |
7 | # This eclass is for all functions pertaining to handling multilib. |
8 | # configurations. |
8 | # configurations. |
9 | |
9 | |
10 | ECLASS=multilib |
|
|
11 | INHERITED="$INHERITED $ECLASS" |
10 | INHERITED="$INHERITED $ECLASS" |
12 | |
11 | |
13 | DESCRIPTION="Based on the ${ECLASS} eclass" |
12 | DESCRIPTION="Based on the ${ECLASS} eclass" |
|
|
13 | |
|
|
14 | # has_multilib_profile: |
|
|
15 | # Return true if the current profile is a multilib profile and lists more than |
|
|
16 | # one abi in ${MULTILIB_ABIS}. You might want to use this like |
|
|
17 | # 'use multilib || has_multilib_profile' until all profiles utilizing the |
|
|
18 | # 'multilib' use flag are removed from portage |
|
|
19 | |
|
|
20 | # is_final_abi: |
|
|
21 | # Return true if ${ABI} is the final abi to be installed (and thus we are |
|
|
22 | # on our last run through a src_* function. |
|
|
23 | |
|
|
24 | # number_abis: |
|
|
25 | # echo the number of ABIs we will be installing for |
|
|
26 | |
|
|
27 | # get_install_abis: |
|
|
28 | # Return a list of the ABIs we want to install for with |
|
|
29 | # the last one in the list being the default. |
|
|
30 | |
|
|
31 | # get_all_abis: |
|
|
32 | # Return a list of the ABIs supported by this profile. |
|
|
33 | # the last one in the list being the default. |
|
|
34 | |
|
|
35 | # get_all_libdirs: |
|
|
36 | # Returns a list of all the libdirs used by this profile. This includes |
|
|
37 | # those that might not be touched by the current ebuild and always includes |
|
|
38 | # "lib". |
|
|
39 | |
|
|
40 | # get_libdir: |
|
|
41 | # Returns the libdir for the selected ABI. This is backwards compatible |
|
|
42 | # and simply calls get_abi_LIBDIR() on newer profiles. You should use this |
|
|
43 | # to determine where to install shared objects (ex: /usr/$(get_libdir)) |
|
|
44 | |
|
|
45 | # get_abi_var <VAR> [<ABI>]: |
|
|
46 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
|
|
47 | # |
|
|
48 | # get_abi_CFLAGS: |
|
|
49 | # get_abi_CDEFINE: |
|
|
50 | # get_abi_LIBDIR: |
|
|
51 | # Aliases for 'get_abi_var CFLAGS', etc. |
|
|
52 | |
|
|
53 | # get_ml_incdir [<include dir> [<ABI>]] |
|
|
54 | # include dir defaults to /usr/include |
|
|
55 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
|
|
56 | # |
|
|
57 | # If a multilib include dir is associated with the passed include dir, then |
|
|
58 | # we return it, otherwise, we just echo back the include dir. This is |
|
|
59 | # neccessary when a built script greps header files rather than testing them |
|
|
60 | # via #include (like perl) to figure out features. |
|
|
61 | |
|
|
62 | # prep_ml_includes: |
|
|
63 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
|
|
64 | # We can install them in different locations for each ABI and create a common |
|
|
65 | # header which includes the right one based on CDEFINE_${ABI}. If your |
|
|
66 | # package installs ABI-specific headers, just add 'prep_ml_includes' to the |
|
|
67 | # end of your src_install(). It takes a list of directories that include |
|
|
68 | # files are installed in (default is /usr/include if none are passed). |
|
|
69 | # |
|
|
70 | # Example: |
|
|
71 | # src_install() { |
|
|
72 | # ... |
|
|
73 | # prep_ml_includes /usr/qt/3/include |
|
|
74 | # } |
|
|
75 | |
|
|
76 | # create_ml_includes <include dir> <symbol 1>:<dir 1> [<symbol 2>:<dir 2> ...] |
|
|
77 | # If you need more control than prep_ml_includes can offer (like linux-headers |
|
|
78 | # for the asm-* dirs, then use create_ml_includes. The firs argument is the |
|
|
79 | # common dir. The remaining args are of the form <symbol>:<dir> where |
|
|
80 | # <symbol> is what is put in the #ifdef for choosing that dir. |
|
|
81 | # |
|
|
82 | # Ideas for this code came from debian's sparc-linux headers package. |
|
|
83 | # |
|
|
84 | # Example: |
|
|
85 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
|
|
86 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
|
|
87 | |
|
|
88 | ### END DOCUMENTATION ### |
|
|
89 | |
|
|
90 | # Defaults: |
|
|
91 | export MULTILIB_ABIS=${MULTILIB_ABIS:-"default"} |
|
|
92 | export DEFAULT_ABI=${DEFAULT_ABI:-"default"} |
|
|
93 | # This causes econf to set --libdir=/usr/lib where it didn't before |
|
|
94 | #export ABI=${ABI:-"default"} |
|
|
95 | export CFLAGS_default |
|
|
96 | export LDFLAGS_default |
|
|
97 | export CHOST_default=${CHOST_default:-${CHOST}} |
|
|
98 | export LIBDIR_default=${CONF_LIBDIR:-"lib"} |
|
|
99 | export CDEFINE_default="__unix__" |
|
|
100 | |
|
|
101 | # has_multilib_profile() |
|
|
102 | has_multilib_profile() { |
|
|
103 | [ -n "${MULTILIB_ABIS}" -a "${MULTILIB_ABIS}" != "${MULTILIB_ABIS/ /}" ] |
|
|
104 | } |
14 | |
105 | |
15 | # This function simply returns the desired lib directory. With portage |
106 | # This function simply returns the desired lib directory. With portage |
16 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
107 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
17 | # to accomidate the needs of multilib systems. It's no longer a good idea |
108 | # to accomidate the needs of multilib systems. It's no longer a good idea |
18 | # to assume all libraries will end up in lib. Replace any (sane) instances |
109 | # to assume all libraries will end up in lib. Replace any (sane) instances |
… | |
… | |
24 | # Added support for ${ABI} and ${DEFAULT_ABI}. If they're both not set, |
115 | # Added support for ${ABI} and ${DEFAULT_ABI}. If they're both not set, |
25 | # fall back on old behavior. Any profile that has these set should also |
116 | # fall back on old behavior. Any profile that has these set should also |
26 | # depend on a newer version of portage (not yet released) which uses these |
117 | # depend on a newer version of portage (not yet released) which uses these |
27 | # over CONF_LIBDIR in econf, dolib, etc... |
118 | # over CONF_LIBDIR in econf, dolib, etc... |
28 | get_libdir() { |
119 | get_libdir() { |
29 | LIBDIR_TEST=$(type econf) |
120 | local CONF_LIBDIR |
30 | if [ ! -z "${CONF_LIBDIR_OVERRIDE}" ] ; then |
121 | if [ -n "${CONF_LIBDIR_OVERRIDE}" ] ; then |
31 | # if there is an override, we want to use that... always. |
122 | # if there is an override, we want to use that... always. |
32 | CONF_LIBDIR="${CONF_LIBDIR_OVERRIDE}" |
123 | echo ${CONF_LIBDIR_OVERRIDE} |
33 | elif [ -n "$(get_abi_LIBDIR)" ]; then |
124 | else |
34 | CONF_LIBDIR="$(get_abi_LIBDIR)" |
125 | get_abi_LIBDIR |
35 | elif [ "${LIBDIR_TEST/CONF_LIBDIR}" == "${LIBDIR_TEST}" ]; then # we don't have CONF_LIBDIR support |
|
|
36 | # will be <portage-2.0.51_pre20 |
|
|
37 | CONF_LIBDIR="lib" |
|
|
38 | fi |
126 | fi |
39 | # and of course, default to lib if CONF_LIBDIR isnt set |
|
|
40 | echo ${CONF_LIBDIR:=lib} |
|
|
41 | unset LIBDIR_TEST |
|
|
42 | } |
127 | } |
43 | |
128 | |
44 | get_multilibdir() { |
129 | get_multilibdir() { |
45 | if [ -n "$(get_abi_LIBDIR)" ]; then |
130 | if has_multilib_profile; then |
46 | eerror "get_multilibdir called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org" |
131 | eerror "get_multilibdir called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org" |
47 | exit 1 |
132 | exit 1 |
48 | fi |
133 | fi |
49 | echo ${CONF_MULTILIBDIR:=lib32} |
134 | echo ${CONF_MULTILIBDIR:=lib32} |
50 | } |
135 | } |
… | |
… | |
59 | # |
144 | # |
60 | # get_libdir_override lib64 |
145 | # get_libdir_override lib64 |
61 | # |
146 | # |
62 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
147 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
63 | get_libdir_override() { |
148 | get_libdir_override() { |
64 | if [ -n "$(get_abi_LIBDIR)" ]; then |
149 | if has_multilib_profile; then |
65 | eerror "get_libdir_override called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org" |
150 | eerror "get_libdir_override called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org" |
66 | exit 1 |
151 | exit 1 |
67 | fi |
152 | fi |
68 | CONF_LIBDIR="$1" |
153 | CONF_LIBDIR="$1" |
69 | CONF_LIBDIR_OVERRIDE="$1" |
154 | CONF_LIBDIR_OVERRIDE="$1" |
|
|
155 | LIBDIR_default="$1" |
70 | } |
156 | } |
71 | |
157 | |
72 | # get_abi_var <VAR> [<ABI>] |
158 | # get_abi_var <VAR> [<ABI>] |
73 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
159 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
74 | # |
160 | # |
… | |
… | |
91 | elif [ -n "${ABI}" ]; then |
177 | elif [ -n "${ABI}" ]; then |
92 | abi=${ABI} |
178 | abi=${ABI} |
93 | elif [ -n "${DEFAULT_ABI}" ]; then |
179 | elif [ -n "${DEFAULT_ABI}" ]; then |
94 | abi=${DEFAULT_ABI} |
180 | abi=${DEFAULT_ABI} |
95 | else |
181 | else |
96 | return 1 |
182 | abi="default" |
97 | fi |
183 | fi |
98 | |
184 | |
99 | local var="${flag}_${abi}" |
185 | local var="${flag}_${abi}" |
100 | echo ${!var} |
186 | echo ${!var} |
101 | } |
187 | } |
102 | |
188 | |
103 | get_abi_CFLAGS() { get_abi_var CFLAGS ${@}; } |
189 | get_abi_CFLAGS() { get_abi_var CFLAGS "${@}"; } |
|
|
190 | get_abi_LDFLAGS() { get_abi_var LDFLAGS "${@}"; } |
|
|
191 | get_abi_CHOST() { get_abi_var CHOST "${@}"; } |
|
|
192 | get_abi_FAKE_TARGETS() { get_abi_var FAKE_TARGETS "${@}"; } |
104 | get_abi_CDEFINE() { get_abi_var CDEFINE ${@}; } |
193 | get_abi_CDEFINE() { get_abi_var CDEFINE "${@}"; } |
105 | get_abi_LIBDIR() { get_abi_var LIBDIR ${@}; } |
194 | get_abi_LIBDIR() { get_abi_var LIBDIR "${@}"; } |
106 | |
195 | |
107 | # Return a list of the ABIs we want to install for with |
196 | # Return a list of the ABIs we want to install for with |
108 | # the last one in the list being the default. |
197 | # the last one in the list being the default. |
109 | get_abi_order() { |
198 | get_install_abis() { |
110 | local order="" |
199 | local order="" |
111 | |
200 | |
112 | if [ -z "${MULTILIB_ABIS}" ]; then |
201 | if [ -z "${MULTILIB_ABIS}" ]; then |
113 | echo "NOMULTILIB" |
202 | echo "default" |
114 | return 1 |
203 | return 0 |
115 | fi |
204 | fi |
116 | |
205 | |
117 | if hasq multilib-pkg-force ${RESTRICT} || |
206 | if hasq multilib-pkg-force ${RESTRICT} || |
118 | { hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then |
207 | { hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then |
119 | for x in ${MULTILIB_ABIS}; do |
208 | for x in ${MULTILIB_ABIS}; do |
… | |
… | |
142 | |
231 | |
143 | echo ${order} |
232 | echo ${order} |
144 | return 0 |
233 | return 0 |
145 | } |
234 | } |
146 | |
235 | |
|
|
236 | # Return a list of the ABIs supported by this profile. |
|
|
237 | # the last one in the list being the default. |
|
|
238 | get_all_abis() { |
|
|
239 | local order="" |
|
|
240 | |
|
|
241 | if [ -z "${MULTILIB_ABIS}" ]; then |
|
|
242 | echo "default" |
|
|
243 | return 0 |
|
|
244 | fi |
|
|
245 | |
|
|
246 | for x in ${MULTILIB_ABIS}; do |
|
|
247 | if [ "${x}" != "${DEFAULT_ABI}" ]; then |
|
|
248 | order="${order:+${order }}${x}" |
|
|
249 | fi |
|
|
250 | done |
|
|
251 | order="${order:+${order} }${DEFAULT_ABI}" |
|
|
252 | |
|
|
253 | echo ${order} |
|
|
254 | return 0 |
|
|
255 | } |
|
|
256 | |
147 | # get_all_libdir() |
257 | # get_all_libdirs() |
148 | # Returns a list of all the libdirs used by this profile. This includes |
258 | # Returns a list of all the libdirs used by this profile. This includes |
149 | # those that might not be touched by the current ebuild. |
259 | # those that might not be touched by the current ebuild. |
150 | get_all_libdirs() { |
260 | get_all_libdirs() { |
151 | local libdirs="lib" |
261 | local libdirs="lib" |
152 | local abi |
262 | local abi |
153 | local dir |
263 | local dir |
154 | |
264 | |
155 | if [ -n "${MULTILIB_ABIS}" ]; then |
265 | if has_multilib_profile; then |
156 | for abi in ${MULTILIB_ABIS}; do |
266 | for abi in ${MULTILIB_ABIS}; do |
157 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
267 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
158 | done |
268 | done |
159 | elif [ -n "${CONF_LIBDIR}" ]; then |
269 | elif [ -n "${CONF_LIBDIR}" ]; then |
160 | for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:=lib32}; do |
270 | for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:-lib32}; do |
161 | [ "${dir}" != "lib" ] && libdirs="${libdirs} ${dir}" |
271 | [ "${dir}" != "lib" ] && libdirs="${libdirs} ${dir}" |
162 | done |
272 | done |
163 | fi |
273 | fi |
164 | |
274 | |
165 | echo "${libdirs}" |
275 | echo "${libdirs}" |
… | |
… | |
167 | |
277 | |
168 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
278 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
169 | # using the new multilib configuration. This can be used to determine |
279 | # using the new multilib configuration. This can be used to determine |
170 | # if we're in the last (or only) run through src_{unpack,compile,install} |
280 | # if we're in the last (or only) run through src_{unpack,compile,install} |
171 | is_final_abi() { |
281 | is_final_abi() { |
172 | [ -z "${ABI}" ] && return 0 |
282 | has_multilib_profile || return 0 |
173 | local ALL_ABIS=$(get_abi_order) |
283 | local ALL_ABIS=$(get_install_abis) |
174 | local LAST_ABI=${ALL_ABIS/* /} |
284 | local LAST_ABI=${ALL_ABIS/* /} |
175 | [ "${LAST_ABI}" = "${ABI}" ] |
285 | [[ ${LAST_ABI} == ${ABI} ]] |
176 | } |
286 | } |
177 | |
287 | |
178 | # echo the number of ABIs we will be installing for |
288 | # echo the number of ABIs we will be installing for |
179 | number_abis() { |
289 | number_abis() { |
180 | get_abi_order | wc -w |
290 | get_install_abis | wc -w |
|
|
291 | } |
|
|
292 | |
|
|
293 | # get_ml_incdir [<include dir> [<ABI>]] |
|
|
294 | # include dir defaults to /usr/include |
|
|
295 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
|
|
296 | get_ml_incdir() { |
|
|
297 | local dir=/usr/include |
|
|
298 | |
|
|
299 | if [[ ${#} -gt 0 ]]; then |
|
|
300 | incdir=${1} |
|
|
301 | shift |
|
|
302 | fi |
|
|
303 | |
|
|
304 | if [[ -z "${MULTILIB_ABIS}" ]]; then |
|
|
305 | echo ${incdir} |
|
|
306 | return 0 |
|
|
307 | fi |
|
|
308 | |
|
|
309 | local abi=${ABI-${DEFAULT_ABI}} |
|
|
310 | if [[ ${#} -gt 0 ]]; then |
|
|
311 | abi=${1} |
|
|
312 | shift |
|
|
313 | fi |
|
|
314 | |
|
|
315 | if [[ -d "${dir}/gentoo-multilib/${abi}" ]]; then |
|
|
316 | echo ${dir}/gentoo-multilib/${abi} |
|
|
317 | else |
|
|
318 | echo ${dir} |
|
|
319 | fi |
181 | } |
320 | } |
182 | |
321 | |
183 | # prep_ml_includes: |
322 | # prep_ml_includes: |
184 | # |
323 | # |
185 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
324 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
… | |
… | |
194 | # ... |
333 | # ... |
195 | # prep_ml_includes /usr/qt/3/include |
334 | # prep_ml_includes /usr/qt/3/include |
196 | # } |
335 | # } |
197 | |
336 | |
198 | prep_ml_includes() { |
337 | prep_ml_includes() { |
199 | local dirs |
|
|
200 | if [ ${#} -eq 0 ]; then |
|
|
201 | dirs="/usr/include" |
|
|
202 | else |
|
|
203 | dirs="${@}" |
|
|
204 | fi |
|
|
205 | |
|
|
206 | if [ $(number_abis) -gt 1 ]; then |
338 | if [ $(number_abis) -gt 1 ]; then |
207 | local dir |
339 | local dir |
|
|
340 | local dirs |
|
|
341 | local base |
|
|
342 | |
|
|
343 | if [ ${#} -eq 0 ]; then |
|
|
344 | dirs="/usr/include" |
|
|
345 | else |
|
|
346 | dirs="${@}" |
|
|
347 | fi |
|
|
348 | |
208 | for dir in ${dirs}; do |
349 | for dir in ${dirs}; do |
|
|
350 | base=${T}/gentoo-multilib/${dir}/gentoo-multilib |
|
|
351 | mkdir -p ${base} |
|
|
352 | [ -d ${base}/${ABI} ] && rm -rf ${base}/${ABI} |
209 | mv ${D}/${dir} ${D}/${dir}.${ABI} |
353 | mv ${D}/${dir} ${base}/${ABI} |
210 | done |
354 | done |
211 | |
355 | |
212 | if is_final_abi; then |
356 | if is_final_abi; then |
|
|
357 | base=${T}/gentoo-multilib |
|
|
358 | pushd ${base} |
|
|
359 | find . | tar -c -T - -f - | tar -x --no-same-owner -f - -C ${D} |
|
|
360 | popd |
|
|
361 | |
213 | for dir in ${dirs}; do |
362 | for dir in ${dirs}; do |
214 | local args="${dir}" |
363 | local args=${dir} |
215 | local abi |
364 | local abi |
216 | dodir ${dir}/gentoo-multilib |
|
|
217 | for abi in $(get_abi_order); do |
365 | for abi in $(get_install_abis); do |
218 | mv ${D}/${dir}.${abi} ${D}/${dir}/gentoo-multilib/${abi} |
|
|
219 | args="${args} $(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
366 | args="${args} $(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
220 | done |
367 | done |
221 | create_ml_includes ${args} |
368 | create_ml_includes ${args} |
222 | done |
369 | done |
223 | fi |
370 | fi |
… | |
… | |
245 | local file |
392 | local file |
246 | for file in $(create_ml_includes-allfiles ${basedirs}); do |
393 | for file in $(create_ml_includes-allfiles ${basedirs}); do |
247 | local name="$(echo $file | tr a-z A-Z | sed 's:[^A-Z]:_:g')" |
394 | local name="$(echo $file | tr a-z A-Z | sed 's:[^A-Z]:_:g')" |
248 | { |
395 | { |
249 | echo "/* Common header file autogenerated by create_ml_includes in multilib.eclass */" |
396 | echo "/* Common header file autogenerated by create_ml_includes in multilib.eclass */" |
250 | #echo "#ifndef __CREATE_ML_INCLUDES_STUB_${name}__" |
|
|
251 | #echo "#define __CREATE_ML_INCLUDES_STUB_${name}__" |
|
|
252 | #echo "" |
|
|
253 | |
397 | |
254 | local dir |
398 | local dir |
255 | for dir in ${basedirs}; do |
399 | for dir in ${basedirs}; do |
256 | if [ -f "${D}/${dir}/${file}" ]; then |
400 | if [ -f "${D}/${dir}/${file}" ]; then |
257 | echo "#ifdef $(create_ml_includes-sym_for_dir ${dir} ${mlinfo})" |
401 | local sym=$(create_ml_includes-sym_for_dir ${dir} ${mlinfo}) |
258 | echo "#include \"$(create_ml_includes-relative_between ${dest}/$(dirname ${file}) ${dir}/${file})\"" |
402 | if [[ ${sym::1} == "!" ]]; then |
259 | echo "#endif /* $(create_ml_includes-sym_for_dir ${dir} ${mlinfo}) */" |
403 | echo "#ifndef ${sym:1}" |
|
|
404 | else |
|
|
405 | echo "#ifdef ${sym}" |
|
|
406 | fi |
|
|
407 | echo "#include <$(create_ml_includes-absolute ${dir}/${file})>" |
|
|
408 | echo "#endif /* ${sym} */" |
260 | echo "" |
409 | echo "" |
261 | fi |
410 | fi |
262 | done |
411 | done |
263 | |
412 | |
264 | #echo "#endif /* __CREATE_ML_INCLUDES_STUB_${name}__ */" |
413 | #echo "#endif /* __CREATE_ML_INCLUDES_STUB_${name}__ */" |
265 | } > ${D}/${dest}/${file} |
414 | } > ${D}/${dest}/${file} |
266 | done |
415 | done |
267 | } |
416 | } |
268 | |
417 | |
269 | # Helper function for create_ml_includes |
418 | # Helper function for create_ml_includes |
270 | create_ml_includes-relative_between() { |
419 | create_ml_includes-absolute() { |
271 | local src="$(create_ml_includes-tidy_path ${1})" |
|
|
272 | local dst="$(create_ml_includes-tidy_path ${2})" |
420 | local dst="$(create_ml_includes-tidy_path ${1})" |
273 | |
421 | |
274 | src=(${src//\// }) |
|
|
275 | dst=(${dst//\// }) |
422 | dst=(${dst//\// }) |
276 | |
423 | |
277 | local i |
424 | local i |
278 | for ((i=0; i<${#src[*]}; i++)); do |
425 | for ((i=0; i<${#dst[*]}; i++)); do |
279 | [ "${dst[i]}" != "${src[i]}" ] && break |
426 | [ "${dst[i]}" == "include" ] && break |
280 | done |
427 | done |
281 | |
428 | |
282 | local common=$i |
429 | local strip_upto=$i |
283 | |
430 | |
284 | for ((i=${#src[*]}; i>common; i--)); do |
|
|
285 | echo -n ../ |
|
|
286 | done |
|
|
287 | |
|
|
288 | for ((i=common; i<${#dst[*]}-1; i++)); do |
431 | for ((i=strip_upto+1; i<${#dst[*]}-1; i++)); do |
289 | echo -n ${dst[i]}/ |
432 | echo -n ${dst[i]}/ |
290 | done |
433 | done |
291 | |
434 | |
292 | echo -n ${dst[i]} |
435 | echo -n ${dst[i]} |
293 | } |
436 | } |