2
1
Эх сурвалжийг харах

pkg-stats: support <pkg>_LICENSE = lines with spaces

For alignement reasons, we sometimes add spaces between <pkg>_LICENSE
and the equal sign. Take this into account in pkg-stats.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas Petazzoni 13 жил өмнө
parent
commit
f1f580731b

+ 1 - 1
support/scripts/pkg-stats

@@ -155,7 +155,7 @@ for i in $(find boot/ linux/ package/ -name '*.mk' | sort) ; do
 	generic_packages=$(($generic_packages+1))
 	generic_packages=$(($generic_packages+1))
     fi
     fi
 
 
-    if grep -qE "^${pkgvariable}_LICENSE =" $i ; then
+    if grep -qE "^${pkgvariable}_LICENSE[ ]*=" $i ; then
 	packages_with_license=$(($packages_with_license+1))
 	packages_with_license=$(($packages_with_license+1))
 	license=1
 	license=1
     else
     else