summaryrefslogtreecommitdiffstats
path: root/scripts/lib/ptxd_make_world_common.sh
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2009-11-09 11:29:06 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2009-11-09 11:31:35 +0100
commit1ea4141c892100caf7d63cda3abb572462c509d2 (patch)
treeba75f1a8b7bd7202ad04c5b0de7f377c76c3b91e /scripts/lib/ptxd_make_world_common.sh
parent4dfd2a9cf6a8598066bff604983ae3204b057ac1 (diff)
downloadptxdist-1ea4141c892100caf7d63cda3abb572462c509d2.tar.gz
ptxdist-1ea4141c892100caf7d63cda3abb572462c509d2.tar.xz
[ptxd_make_world_common.sh] fix pkg_build_dir check
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'scripts/lib/ptxd_make_world_common.sh')
-rw-r--r--scripts/lib/ptxd_make_world_common.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/ptxd_make_world_common.sh b/scripts/lib/ptxd_make_world_common.sh
index ebc96b82f..18db8f4ad 100644
--- a/scripts/lib/ptxd_make_world_common.sh
+++ b/scripts/lib/ptxd_make_world_common.sh
@@ -54,7 +54,7 @@ ptxd_make_world_init_compat() {
# build_dir
if [ -n "${pkg_deprecated_install_builddir}" -a -n "${pkg_deprecated_builddir}" -a \
"${pkg_deprecated_install_builddir}" != "${pkg_deprecated_builddir}" -o \
- -n "${pkg_build_dir}" -a \
+ -n "${pkg_build_dir}" -a -n "${pkg_deprecated_builddir}" -a \
"${pkg_build_dir}" != "${pkg_deprecated_builddir}" ]; then
ptxd_bailout "${FUNCNAME}: build dir inconsistency detected!"
fi