From 17cd914917307c11e3cbeab03becadc16854ae23 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Sun, 7 Jan 2018 23:50:05 +0100 Subject: [PATCH] utils/test-pkg: always run a global legal-info Instead of limiting it to the package under test, we run it globally. Signed-off-by: "Yann E. MORIN" Cc: Thomas Petazzoni Cc: Matthew Weber Signed-off-by: Thomas Petazzoni --- utils/test-pkg | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/utils/test-pkg b/utils/test-pkg index 1b7046eac4..cd7b9dad7b 100755 --- a/utils/test-pkg +++ b/utils/test-pkg @@ -127,10 +127,8 @@ build_one() { # legal-info done systematically, because some packages have different # sources depending on the configuration (e.g. lua-5.2 vs. lua-5.3) - if [ -n "${pkg}" ]; then - if ! make O="${dir}" "${pkg}-legal-info" >> "${dir}/logfile" 2>&1; then - return 3 - fi + if ! make O="${dir}" legal-info >> "${dir}/logfile" 2>&1; then + return 3 fi } -- 2.30.2