aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYvan Roux <yvan.roux@linaro.org>2016-05-09 13:57:25 +0200
committerYvan Roux <yvan.roux@linaro.org>2016-05-09 13:57:25 +0200
commite6c6be3a92d008cff40d8f276be4811ea102555a (patch)
tree255d3681b735bc9280713a7c2d0a9babbe506d0e
parentcdb87e7595e3bc9053ef45bb1daeabae32b4acf3 (diff)
More tarbin/make check fixes.
Change-Id: I3ab302399bd388b1ef4730adfb138b0c2716315e
-rwxr-xr-xlib/make.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/make.sh b/lib/make.sh
index 9a10140f..0ce94f8a 100755
--- a/lib/make.sh
+++ b/lib/make.sh
@@ -398,7 +398,7 @@ build()
# earlier invocation of abe.
# TODO: eliminate buildingall as a global and make it a local check passed
# via a parameter to build().
- if test x"${buildingall}" = xno -a x"${tarbin}" != xyes; then
+ if test x"${buildingall}" = xno; then
# Skip make_check if it isn't designated to be executed in ${runtests}
is_package_in_runtests "${runtests}" ${component}
@@ -691,7 +691,7 @@ make_check()
# Run tests
local checklog="${builddir}/check-${component}.log"
- if test x"${build}" = x"${target}" -a x"${tarbin}" != x"yes"; then
+ if test x"${build}" = x"${target}"; then
# Overwrite ${checklog} in order to provide a clean log file
# if make check has been run more than once on a build tree.
dryrun "make check RUNTESTFLAGS=\"${runtest_flags} --xml=${component}.xml \" ${make_flags} -w -i -k -C ${builddir} 2>&1 | tee ${checklog}"