Merge branch 'pkg-stats-fixes' of git://git.busybox.net/~tpetazzoni/git/buildroot
This commit is contained in:
commit
978a88c415
@ -70,7 +70,7 @@ for i in $(find package/ -name '*.mk') ; do
|
|||||||
$i = "package/database/database.mk" -o \
|
$i = "package/database/database.mk" -o \
|
||||||
$i = "package/editors/editors.mk" -o \
|
$i = "package/editors/editors.mk" -o \
|
||||||
$i = "package/games/games.mk" -o \
|
$i = "package/games/games.mk" -o \
|
||||||
$i = "package/multimedia/multimedia" -o \
|
$i = "package/multimedia/multimedia.mk" -o \
|
||||||
$i = "package/customize/customize.mk" -o \
|
$i = "package/customize/customize.mk" -o \
|
||||||
$i = "package/gnuconfig/gnuconfig.mk" -o \
|
$i = "package/gnuconfig/gnuconfig.mk" -o \
|
||||||
$i = "package/x11r7/x11r7.mk" ; then
|
$i = "package/x11r7/x11r7.mk" ; then
|
||||||
@ -144,7 +144,7 @@ for i in $(find package/ -name '*.mk') ; do
|
|||||||
echo "</td>"
|
echo "</td>"
|
||||||
|
|
||||||
echo "<td class=\"centered\">"
|
echo "<td class=\"centered\">"
|
||||||
if grep "^$pkg:" $i > /dev/null ; then
|
if test $is_pkg_target -eq 0 -a $is_auto_target -eq 0 ; then
|
||||||
found=1
|
found=1
|
||||||
is_manual_target=1
|
is_manual_target=1
|
||||||
echo "<b>YES</b>"
|
echo "<b>YES</b>"
|
||||||
@ -155,6 +155,10 @@ for i in $(find package/ -name '*.mk') ; do
|
|||||||
|
|
||||||
echo "<td>"
|
echo "<td>"
|
||||||
echo "<ul>"
|
echo "<ul>"
|
||||||
|
if grep "/configure" $i > /dev/null ; then
|
||||||
|
echo "<li>convert package to autotools ?</li>"
|
||||||
|
convert_to_autotools=$((convert_to_autotools+1))
|
||||||
|
else
|
||||||
if [ $is_manual_target -eq 1 ]; then
|
if [ $is_manual_target -eq 1 ]; then
|
||||||
echo "<li>convert to generic target</li>"
|
echo "<li>convert to generic target</li>"
|
||||||
convert_to_generic_target=$((convert_to_generic_target+1))
|
convert_to_generic_target=$((convert_to_generic_target+1))
|
||||||
@ -163,11 +167,6 @@ for i in $(find package/ -name '*.mk') ; do
|
|||||||
echo "<li>convert to generic host</li>"
|
echo "<li>convert to generic host</li>"
|
||||||
convert_to_generic_host=$((convert_to_generic_host+1))
|
convert_to_generic_host=$((convert_to_generic_host+1))
|
||||||
fi
|
fi
|
||||||
if grep "\./configure" $i > /dev/null ; then
|
|
||||||
if [ $is_manual_host -ne 1 ] ; then
|
|
||||||
echo "<li>convert package to autotools ?</li>"
|
|
||||||
convert_to_autotools=$((convert_to_autotools+1))
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
if [ $found -eq 0 ] ; then
|
if [ $found -eq 0 ] ; then
|
||||||
echo "<li>look manually</li>"
|
echo "<li>look manually</li>"
|
||||||
|
Loading…
Reference in New Issue
Block a user