diff options
author | H Hartley Sweeten <hartleys@visionengravers.com> | 2011-10-05 15:34:59 -0500 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-10-05 23:07:24 +0200 |
commit | e684cecbfa9c01ed8b7494e4b294c8b6b303747e (patch) | |
tree | 5eb144dd7551bfb583efb56f1585327ff8146a43 | |
parent | a5094a056ad99da7763d93a97b8e61630f60d170 (diff) | |
download | buildroot-novena-e684cecbfa9c01ed8b7494e4b294c8b6b303747e.tar.gz buildroot-novena-e684cecbfa9c01ed8b7494e4b294c8b6b303747e.zip |
pkg-stats: use correct variable names for convert_to_*autotools
The variable convert_to_autotools is not used in the script. The correct
variables are convert_to_target_autotools and convert_to_host_autotools.
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rwxr-xr-x | support/scripts/pkg-stats | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/support/scripts/pkg-stats b/support/scripts/pkg-stats index 3e89bd14b..30a21f20f 100755 --- a/support/scripts/pkg-stats +++ b/support/scripts/pkg-stats @@ -71,7 +71,8 @@ tr.correct td { convert_to_generic_target=0 convert_to_generic_host=0 -convert_to_autotools=0 +convert_to_target_autotools=0 +convert_to_host_autotools=0 total_patch_count=0 cnt=0 for i in $(find package/ -name '*.mk') ; do |