Commit 6e3e5a99 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Peter Korsgaard
Browse files

pkg-stats: update grep tests for package type



Update the grep tests used to determine the package type.

The package name and directory are now worked out magically due to:

 package: add helper functions to get package name and directory magically

Because of this the extra arguments were removed by patches:

 package: remove useless arguments from GENTARGETS
 package: remove useless arguments from AUTOTARGETS
 package: remove useless arguments from CMAKETARGETS

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 6b19842c
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -98,27 +98,27 @@ for i in $(find package/ -name '*.mk') ; do
    is_manual_target=0
    is_manual_host=0

    if grep -E "\(call AUTOTARGETS,[^,]*,[^,]*,host\)" $i > /dev/null ; then
    if grep -E "\(call AUTOTARGETS,host\)" $i > /dev/null ; then
	is_auto_host=1
    fi

    if grep -E "\(call AUTOTARGETS,[^,]*,[^,]*(,target|)\)" $i > /dev/null ; then
    if grep -E "\(call AUTOTARGETS\)" $i > /dev/null ; then
	is_auto_target=1
    fi

    if grep -E "\(call GENTARGETS,[^,]*,[^,]*,host\)" $i > /dev/null ; then
    if grep -E "\(call GENTARGETS,host\)" $i > /dev/null ; then
	is_pkg_host=1
    fi

    if grep -E "\(call GENTARGETS,[^,]*,[^,]*(,target|)\)" $i > /dev/null ; then
    if grep -E "\(call GENTARGETS\)" $i > /dev/null ; then
	is_pkg_target=1
    fi

    if grep -E "\(call CMAKETARGETS,[^,]*,[^,]*,host\)" $i > /dev/null ; then
    if grep -E "\(call CMAKETARGETS,host\)" $i > /dev/null ; then
	is_cmake_host=1
    fi

    if grep -E "\(call CMAKETARGETS,[^,]*,[^,]*(,target|)\)" $i > /dev/null ; then
    if grep -E "\(call CMAKETARGETS\)" $i > /dev/null ; then
	is_cmake_target=1
    fi