| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2012 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/autotools-utils.eclass,v 1.22 2011/09/18 07:57:55 mgorny Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.53 2012/05/28 07:46:59 mgorny Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: autotools-utils.eclass |
5 | # @ECLASS: autotools-utils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Maciej Mrozowski <reavertm@gentoo.org> |
7 | # Maciej Mrozowski <reavertm@gentoo.org> |
| 8 | # Michał Górny <mgorny@gentoo.org> |
8 | # Michał Górny <mgorny@gentoo.org> |
| 9 | # @BLURB: common ebuild functions for autotools-based packages |
9 | # @BLURB: common ebuild functions for autotools-based packages |
| 10 | # @DESCRIPTION: |
10 | # @DESCRIPTION: |
| 11 | # autotools-utils.eclass is autotools.eclass(5) and base.eclass(5) wrapper |
11 | # autotools-utils.eclass is autotools.eclass(5) and base.eclass(5) wrapper |
| 12 | # providing all inherited features along with econf arguments as Bash array, |
12 | # providing all inherited features along with econf arguments as Bash array, |
| 13 | # out of source build with overridable build dir location, static archives |
13 | # out of source build with overridable build dir location, static archives |
| 14 | # handling, libtool files removal, enable/disable debug handling. |
14 | # handling, libtool files removal. |
|
|
15 | # |
|
|
16 | # Please note note that autotools-utils does not support mixing of its phase |
|
|
17 | # functions with regular econf/emake calls. If necessary, please call |
|
|
18 | # autotools-utils_src_compile instead of the latter. |
| 15 | # |
19 | # |
| 16 | # @EXAMPLE: |
20 | # @EXAMPLE: |
| 17 | # Typical ebuild using autotools-utils.eclass: |
21 | # Typical ebuild using autotools-utils.eclass: |
| 18 | # |
22 | # |
| 19 | # @CODE |
23 | # @CODE |
| … | |
… | |
| 56 | # "${FILESDIR}/${P}-unbundle_libpng.patch" |
60 | # "${FILESDIR}/${P}-unbundle_libpng.patch" |
| 57 | # ) |
61 | # ) |
| 58 | # |
62 | # |
| 59 | # src_configure() { |
63 | # src_configure() { |
| 60 | # local myeconfargs=( |
64 | # local myeconfargs=( |
|
|
65 | # $(use_enable debug) |
| 61 | # $(use_with qt4) |
66 | # $(use_with qt4) |
| 62 | # $(use_enable threads multithreading) |
67 | # $(use_enable threads multithreading) |
| 63 | # $(use_with tiff) |
68 | # $(use_with tiff) |
| 64 | # ) |
69 | # ) |
| 65 | # autotools-utils_src_configure |
70 | # autotools-utils_src_configure |
| … | |
… | |
| 86 | case ${EAPI:-0} in |
91 | case ${EAPI:-0} in |
| 87 | 2|3|4) ;; |
92 | 2|3|4) ;; |
| 88 | *) die "EAPI=${EAPI} is not supported" ;; |
93 | *) die "EAPI=${EAPI} is not supported" ;; |
| 89 | esac |
94 | esac |
| 90 | |
95 | |
|
|
96 | # @ECLASS-VARIABLE: AUTOTOOLS_AUTORECONF |
|
|
97 | # @DEFAULT_UNSET |
|
|
98 | # @DESCRIPTION: |
|
|
99 | # Set to a non-empty value in order to enable running autoreconf |
|
|
100 | # in src_prepare() and adding autotools dependencies. |
|
|
101 | # |
|
|
102 | # This is usually necessary when using live sources or applying patches |
|
|
103 | # modifying configure.ac or Makefile.am files. Note that in the latter case |
|
|
104 | # setting this variable is obligatory even though the eclass will work without |
|
|
105 | # it (to add the necessary dependencies). |
|
|
106 | # |
|
|
107 | # The eclass will try to determine the correct autotools to run including a few |
|
|
108 | # external tools: gettext, glib-gettext, intltool, gtk-doc, gnome-doc-prepare. |
|
|
109 | # If your tool is not supported, please open a bug and we'll add support for it. |
|
|
110 | # |
|
|
111 | # Note that dependencies are added for autoconf, automake and libtool only. |
|
|
112 | # If your package needs one of the external tools listed above, you need to add |
|
|
113 | # appropriate packages to DEPEND yourself. |
|
|
114 | [[ ${AUTOTOOLS_AUTORECONF} ]] || : ${AUTOTOOLS_AUTO_DEPEND:=no} |
|
|
115 | |
| 91 | inherit autotools base eutils |
116 | inherit autotools eutils libtool |
| 92 | |
117 | |
| 93 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test |
118 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test |
| 94 | |
119 | |
| 95 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
120 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
|
|
121 | # @DEFAULT_UNSET |
| 96 | # @DESCRIPTION: |
122 | # @DESCRIPTION: |
| 97 | # Build directory, location where all autotools generated files should be |
123 | # Build directory, location where all autotools generated files should be |
| 98 | # placed. For out of source builds it defaults to ${WORKDIR}/${P}_build. |
124 | # placed. For out of source builds it defaults to ${WORKDIR}/${P}_build. |
| 99 | |
125 | |
| 100 | # @ECLASS-VARIABLE: AUTOTOOLS_IN_SOURCE_BUILD |
126 | # @ECLASS-VARIABLE: AUTOTOOLS_IN_SOURCE_BUILD |
|
|
127 | # @DEFAULT_UNSET |
| 101 | # @DESCRIPTION: |
128 | # @DESCRIPTION: |
| 102 | # Set to enable in-source build. |
129 | # Set to enable in-source build. |
| 103 | |
130 | |
| 104 | # @ECLASS-VARIABLE: ECONF_SOURCE |
131 | # @ECLASS-VARIABLE: ECONF_SOURCE |
|
|
132 | # @DEFAULT_UNSET |
| 105 | # @DESCRIPTION: |
133 | # @DESCRIPTION: |
| 106 | # Specify location of autotools' configure script. By default it uses ${S}. |
134 | # Specify location of autotools' configure script. By default it uses ${S}. |
| 107 | |
135 | |
| 108 | # @ECLASS-VARIABLE: myeconfargs |
136 | # @ECLASS-VARIABLE: myeconfargs |
|
|
137 | # @DEFAULT_UNSET |
| 109 | # @DESCRIPTION: |
138 | # @DESCRIPTION: |
| 110 | # Optional econf arguments as Bash array. Should be defined before calling src_configure. |
139 | # Optional econf arguments as Bash array. Should be defined before calling src_configure. |
| 111 | # @CODE |
140 | # @CODE |
| 112 | # src_configure() { |
141 | # src_configure() { |
| 113 | # local myeconfargs=( |
142 | # local myeconfargs=( |
| … | |
… | |
| 116 | # $(use_enable debug cnddebug) |
145 | # $(use_enable debug cnddebug) |
| 117 | # $(use_enable threads multithreading) |
146 | # $(use_enable threads multithreading) |
| 118 | # ) |
147 | # ) |
| 119 | # autotools-utils_src_configure |
148 | # autotools-utils_src_configure |
| 120 | # } |
149 | # } |
|
|
150 | # @CODE |
|
|
151 | |
|
|
152 | # @ECLASS-VARIABLE: DOCS |
|
|
153 | # @DEFAULT_UNSET |
|
|
154 | # @DESCRIPTION: |
|
|
155 | # Array containing documents passed to dodoc command. |
|
|
156 | # |
|
|
157 | # Example: |
|
|
158 | # @CODE |
|
|
159 | # DOCS=( NEWS README ) |
|
|
160 | # @CODE |
|
|
161 | |
|
|
162 | # @ECLASS-VARIABLE: HTML_DOCS |
|
|
163 | # @DEFAULT_UNSET |
|
|
164 | # @DESCRIPTION: |
|
|
165 | # Array containing documents passed to dohtml command. |
|
|
166 | # |
|
|
167 | # Example: |
|
|
168 | # @CODE |
|
|
169 | # HTML_DOCS=( doc/html/ ) |
|
|
170 | # @CODE |
|
|
171 | |
|
|
172 | # @ECLASS-VARIABLE: PATCHES |
|
|
173 | # @DEFAULT_UNSET |
|
|
174 | # @DESCRIPTION: |
|
|
175 | # PATCHES array variable containing all various patches to be applied. |
|
|
176 | # |
|
|
177 | # Example: |
|
|
178 | # @CODE |
|
|
179 | # PATCHES=( "${FILESDIR}"/${P}-mypatch.patch ) |
| 121 | # @CODE |
180 | # @CODE |
| 122 | |
181 | |
| 123 | # Determine using IN or OUT source build |
182 | # Determine using IN or OUT source build |
| 124 | _check_build_dir() { |
183 | _check_build_dir() { |
| 125 | : ${ECONF_SOURCE:=${S}} |
184 | : ${ECONF_SOURCE:=${S}} |
| … | |
… | |
| 200 | rm -f "${f}" || die |
259 | rm -f "${f}" || die |
| 201 | fi |
260 | fi |
| 202 | done |
261 | done |
| 203 | } |
262 | } |
| 204 | |
263 | |
|
|
264 | # @FUNCTION: autotools-utils_autoreconf |
|
|
265 | # @DESCRIPTION: |
|
|
266 | # Reconfigure the sources (like gnome-autogen.sh or eautoreconf). |
|
|
267 | autotools-utils_autoreconf() { |
|
|
268 | debug-print-function ${FUNCNAME} "$@" |
|
|
269 | |
|
|
270 | # Override this func to not require unnecessary eaclocal calls. |
|
|
271 | autotools_check_macro() { |
|
|
272 | local x |
|
|
273 | |
|
|
274 | # Add a few additional variants as we don't get expansions. |
|
|
275 | [[ ${1} = AC_CONFIG_HEADERS ]] && set -- "${@}" \ |
|
|
276 | AC_CONFIG_HEADER AM_CONFIG_HEADER |
|
|
277 | |
|
|
278 | for x; do |
|
|
279 | grep -h "^${x}" configure.{ac,in} 2>/dev/null |
|
|
280 | done |
|
|
281 | } |
|
|
282 | |
|
|
283 | einfo "Autoreconfiguring '${PWD}' ..." |
|
|
284 | |
|
|
285 | local auxdir=$(sed -n -e 's/^AC_CONFIG_AUX_DIR(\(.*\))$/\1/p' \ |
|
|
286 | configure.{ac,in} 2>/dev/null) |
|
|
287 | if [[ ${auxdir} ]]; then |
|
|
288 | auxdir=${auxdir%%]} |
|
|
289 | mkdir -p ${auxdir##[} |
|
|
290 | fi |
|
|
291 | |
|
|
292 | # Support running additional tools like gnome-autogen.sh. |
|
|
293 | # Note: you need to add additional depends to the ebuild. |
|
|
294 | |
|
|
295 | # gettext |
|
|
296 | if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then |
|
|
297 | echo 'no' | autotools_run_tool glib-gettextize --copy --force |
|
|
298 | elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then |
|
|
299 | eautopoint --force |
|
|
300 | fi |
|
|
301 | |
|
|
302 | # intltool |
|
|
303 | if [[ $(autotools_check_macro AC_PROG_INTLTOOL IT_PROG_INTLTOOL) ]] |
|
|
304 | then |
|
|
305 | autotools_run_tool intltoolize --copy --automake --force |
|
|
306 | fi |
|
|
307 | |
|
|
308 | # gtk-doc |
|
|
309 | if [[ $(autotools_check_macro GTK_DOC_CHECK) ]]; then |
|
|
310 | autotools_run_tool gtkdocize --copy |
|
|
311 | fi |
|
|
312 | |
|
|
313 | # gnome-doc |
|
|
314 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
|
|
315 | autotools_run_tool gnome-doc-prepare --copy --force |
|
|
316 | fi |
|
|
317 | |
|
|
318 | if [[ $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] |
|
|
319 | then |
|
|
320 | _elibtoolize --copy --force --install |
|
|
321 | fi |
|
|
322 | |
|
|
323 | eaclocal |
|
|
324 | eautoconf |
|
|
325 | eautoheader |
|
|
326 | FROM_EAUTORECONF=sure eautomake |
|
|
327 | |
|
|
328 | local x |
|
|
329 | for x in $(autotools_check_macro_val AC_CONFIG_SUBDIRS); do |
|
|
330 | if [[ -d ${x} ]] ; then |
|
|
331 | pushd "${x}" >/dev/null || die |
|
|
332 | autotools-utils_autoreconf |
|
|
333 | popd >/dev/null || die |
|
|
334 | fi |
|
|
335 | done |
|
|
336 | } |
|
|
337 | |
| 205 | # @FUNCTION: autotools-utils_src_prepare |
338 | # @FUNCTION: autotools-utils_src_prepare |
| 206 | # @DESCRIPTION: |
339 | # @DESCRIPTION: |
| 207 | # The src_prepare function. |
340 | # The src_prepare function. |
| 208 | # |
341 | # |
| 209 | # Supporting PATCHES array and user patches. See base.eclass(5) for reference. |
342 | # Supporting PATCHES array and user patches. See base.eclass(5) for reference. |
| 210 | autotools-utils_src_prepare() { |
343 | autotools-utils_src_prepare() { |
| 211 | debug-print-function ${FUNCNAME} "$@" |
344 | debug-print-function ${FUNCNAME} "$@" |
| 212 | |
345 | |
| 213 | base_src_prepare |
346 | local want_autoreconf=${AUTOTOOLS_AUTORECONF} |
|
|
347 | |
|
|
348 | [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" |
|
|
349 | |
|
|
350 | at_checksum() { |
|
|
351 | find '(' -name 'Makefile.am' \ |
|
|
352 | -o -name 'configure.ac' \ |
|
|
353 | -o -name 'configure.in' ')' \ |
|
|
354 | -exec cksum {} + | sort -k2 |
|
|
355 | } |
|
|
356 | |
|
|
357 | [[ ! ${want_autoreconf} ]] && local checksum=$(at_checksum) |
|
|
358 | epatch_user |
|
|
359 | if [[ ! ${want_autoreconf} ]]; then |
|
|
360 | if [[ ${checksum} != $(at_checksum) ]]; then |
|
|
361 | einfo 'Will autoreconfigure due to user patches applied.' |
|
|
362 | want_autoreconf=yep |
|
|
363 | fi |
|
|
364 | fi |
|
|
365 | |
|
|
366 | [[ ${want_autoreconf} ]] && autotools-utils_autoreconf |
|
|
367 | elibtoolize --patch-only |
| 214 | } |
368 | } |
| 215 | |
369 | |
| 216 | # @FUNCTION: autotools-utils_src_configure |
370 | # @FUNCTION: autotools-utils_src_configure |
| 217 | # @DESCRIPTION: |
371 | # @DESCRIPTION: |
| 218 | # The src_configure function. For out of source build it creates build |
372 | # The src_configure function. For out of source build it creates build |
| … | |
… | |
| 226 | debug-print-function ${FUNCNAME} "$@" |
380 | debug-print-function ${FUNCNAME} "$@" |
| 227 | |
381 | |
| 228 | [[ -z ${myeconfargs+1} || $(declare -p myeconfargs) == 'declare -a'* ]] \ |
382 | [[ -z ${myeconfargs+1} || $(declare -p myeconfargs) == 'declare -a'* ]] \ |
| 229 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
383 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
| 230 | |
384 | |
|
|
385 | [[ ${EAPI} == 2 ]] && ! use prefix && EPREFIX= |
|
|
386 | |
| 231 | # Common args |
387 | # Common args |
| 232 | local econfargs=() |
388 | local econfargs=() |
| 233 | |
389 | |
| 234 | # Handle debug found in IUSE |
390 | _check_build_dir |
| 235 | if has debug ${IUSE//+}; then |
391 | if "${ECONF_SOURCE}"/configure --help 2>&1 | grep -q '^ *--docdir='; then |
| 236 | local debugarg=$(use_enable debug) |
392 | econfargs+=( |
| 237 | if ! has "${debugarg}" "${myeconfargs[@]}"; then |
393 | --docdir="${EPREFIX}"/usr/share/doc/${PF} |
| 238 | eqawarn 'Implicit $(use_enable debug) for IUSE="debug" is no longer supported.' |
394 | ) |
| 239 | eqawarn 'Please add the necessary arg to myeconfargs if requested.' |
|
|
| 240 | eqawarn 'The autotools-utils eclass will stop warning about it on Oct 15th.' |
|
|
| 241 | fi |
|
|
| 242 | fi |
395 | fi |
| 243 | |
396 | |
| 244 | # Handle static-libs found in IUSE, disable them by default |
397 | # Handle static-libs found in IUSE, disable them by default |
| 245 | if has static-libs ${IUSE//+}; then |
398 | if in_iuse static-libs; then |
| 246 | econfargs+=( |
399 | econfargs+=( |
| 247 | --enable-shared |
400 | --enable-shared |
| 248 | $(use_enable static-libs static) |
401 | $(use_enable static-libs static) |
| 249 | ) |
402 | ) |
| 250 | fi |
403 | fi |
| 251 | |
404 | |
| 252 | # Append user args |
405 | # Append user args |
| 253 | econfargs+=("${myeconfargs[@]}") |
406 | econfargs+=("${myeconfargs[@]}") |
| 254 | |
407 | |
| 255 | _check_build_dir |
|
|
| 256 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
408 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
| 257 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
409 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 258 | base_src_configure "${econfargs[@]}" "$@" |
410 | econf "${econfargs[@]}" "$@" |
| 259 | popd > /dev/null |
411 | popd > /dev/null || die |
| 260 | } |
412 | } |
| 261 | |
413 | |
| 262 | # @FUNCTION: autotools-utils_src_compile |
414 | # @FUNCTION: autotools-utils_src_compile |
| 263 | # @DESCRIPTION: |
415 | # @DESCRIPTION: |
| 264 | # The autotools src_compile function, invokes emake in specified AUTOTOOLS_BUILD_DIR. |
416 | # The autotools src_compile function, invokes emake in specified AUTOTOOLS_BUILD_DIR. |
| 265 | autotools-utils_src_compile() { |
417 | autotools-utils_src_compile() { |
| 266 | debug-print-function ${FUNCNAME} "$@" |
418 | debug-print-function ${FUNCNAME} "$@" |
| 267 | |
419 | |
| 268 | _check_build_dir |
420 | _check_build_dir |
| 269 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
421 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 270 | base_src_compile "$@" |
422 | emake "$@" || die 'emake failed' |
| 271 | popd > /dev/null |
423 | popd > /dev/null || die |
| 272 | } |
424 | } |
| 273 | |
425 | |
| 274 | # @FUNCTION: autotools-utils_src_install |
426 | # @FUNCTION: autotools-utils_src_install |
| 275 | # @DESCRIPTION: |
427 | # @DESCRIPTION: |
| 276 | # The autotools src_install function. Runs emake install, unconditionally |
428 | # The autotools src_install function. Runs emake install, unconditionally |
| … | |
… | |
| 281 | # DOCS and HTML_DOCS arrays are supported. See base.eclass(5) for reference. |
433 | # DOCS and HTML_DOCS arrays are supported. See base.eclass(5) for reference. |
| 282 | autotools-utils_src_install() { |
434 | autotools-utils_src_install() { |
| 283 | debug-print-function ${FUNCNAME} "$@" |
435 | debug-print-function ${FUNCNAME} "$@" |
| 284 | |
436 | |
| 285 | _check_build_dir |
437 | _check_build_dir |
| 286 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
438 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 287 | base_src_install "$@" |
439 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
| 288 | popd > /dev/null |
440 | popd > /dev/null || die |
|
|
441 | |
|
|
442 | # Move docs installed by autotools (in EAPI < 4). |
|
|
443 | if [[ ${EAPI} == [23] ]] \ |
|
|
444 | && path_exists "${D}${EPREFIX}"/usr/share/doc/${PF}/*; then |
|
|
445 | if [[ $(find "${D}${EPREFIX}"/usr/share/doc/${PF}/* -type d) ]]; then |
|
|
446 | eqawarn "autotools-utils: directories in docdir require at least EAPI 4" |
|
|
447 | else |
|
|
448 | mkdir "${T}"/temp-docdir |
|
|
449 | mv "${D}${EPREFIX}"/usr/share/doc/${PF}/* "${T}"/temp-docdir/ \ |
|
|
450 | || die "moving docs to tempdir failed" |
|
|
451 | |
|
|
452 | dodoc "${T}"/temp-docdir/* || die "docdir dodoc failed" |
|
|
453 | rm -r "${T}"/temp-docdir || die |
|
|
454 | fi |
|
|
455 | fi |
|
|
456 | |
|
|
457 | # XXX: support installing them from builddir as well? |
|
|
458 | if [[ ${DOCS} ]]; then |
|
|
459 | dodoc "${DOCS[@]}" || die "dodoc failed" |
|
|
460 | else |
|
|
461 | local f |
|
|
462 | # same list as in PMS |
|
|
463 | for f in README* ChangeLog AUTHORS NEWS TODO CHANGES \ |
|
|
464 | THANKS BUGS FAQ CREDITS CHANGELOG; do |
|
|
465 | if [[ -s ${f} ]]; then |
|
|
466 | dodoc "${f}" || die "(default) dodoc ${f} failed" |
|
|
467 | fi |
|
|
468 | done |
|
|
469 | fi |
|
|
470 | if [[ ${HTML_DOCS} ]]; then |
|
|
471 | dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed" |
|
|
472 | fi |
| 289 | |
473 | |
| 290 | # Remove libtool files and unnecessary static libs |
474 | # Remove libtool files and unnecessary static libs |
| 291 | remove_libtool_files |
475 | remove_libtool_files |
| 292 | } |
476 | } |
| 293 | |
477 | |
| … | |
… | |
| 296 | # The autotools src_test function. Runs emake check in build directory. |
480 | # The autotools src_test function. Runs emake check in build directory. |
| 297 | autotools-utils_src_test() { |
481 | autotools-utils_src_test() { |
| 298 | debug-print-function ${FUNCNAME} "$@" |
482 | debug-print-function ${FUNCNAME} "$@" |
| 299 | |
483 | |
| 300 | _check_build_dir |
484 | _check_build_dir |
| 301 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
485 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 302 | # Run default src_test as defined in ebuild.sh |
486 | # Run default src_test as defined in ebuild.sh |
| 303 | default_src_test |
487 | default_src_test |
| 304 | popd > /dev/null |
488 | popd > /dev/null || die |
| 305 | } |
489 | } |