diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-07-04 23:10:34 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-07-04 23:11:02 +0200 |
commit | 75a6169f398febcf900cd8e041e1c6ce4c681991 (patch) | |
tree | 9bcd1e12acc930c95eff1bc6dddb9be8d277d4db /scripts | |
parent | 38a55849a2f3a237e643cf7abd149ba054dd3a96 (diff) |
GNU tr is required for Linux kernel compilation
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/prereq.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/prereq.sh b/scripts/prereq.sh index e0d2aa002..0222172b9 100755 --- a/scripts/prereq.sh +++ b/scripts/prereq.sh @@ -688,6 +688,9 @@ fi if [ $host_build_tar -eq 1 ]; then printf "\t%s\n" "select ADK_HOST_BUILD_TAR" >> $topdir/target/config/Config.in.prereq fi +if [ $host_build_coreutils -eq 1 ]; then + printf "\t%s\n" "select ADK_HOST_BUILD_COREUTILS" >> $topdir/target/config/Config.in.prereq +fi if [ $host_build_cpio -eq 1 ]; then printf "\t%s\n" "select ADK_HOST_BUILD_CPIO" >> $topdir/target/config/Config.in.prereq fi @@ -713,9 +716,6 @@ fi if [ $host_build_qemu -eq 1 ]; then printf "\t%s\n" "select ADK_HOST_BUILD_QEMU if ADK_HOST_NEED_QEMU" >> $topdir/target/config/Config.in.prereq fi -if [ $host_build_coreutils -eq 1 ]; then - printf "\t%s\n" "select ADK_HOST_BUILD_COREUTILS if ADK_HOST_NEED_COREUTILS" >> $topdir/target/config/Config.in.prereq -fi # create Host OS symbols case $os in |