From: Yann E. MORIN Date: Sun, 7 Jan 2018 22:50:05 +0000 (+0100) Subject: utils/test-pkg: always run a global legal-info X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=17cd914917307c11e3cbeab03becadc16854ae23;p=buildroot.git 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 --- 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 }