2017-01-26--编译busybox总结

错误一:

ox@ubuntu:busybox-1.16.0$ make menuconfig
Makefile:431: *** mixed implicit and normal rules: deprecated syntax
Makefile:1279: *** mixed implicit and normal rules: deprecated syntax
make: *** No rule to make target 'menuconfig'.  Stop.

  1.问题:make命令版本过高,出现该错误

  2.解决:参考http://www.linuxidc.com/Linux/2012-01/52368.htm

    将makefile中的

    config %config: scripts_basic outputmakefile FORCE 修改为 %config: scripts_basic outputmakefile FORCE;

    / %/: prepare scripts FORCE              修改为  %/: prepare scripts FORCE

    重新make即可完成编译

原文地址:https://www.cnblogs.com/Mr-ox/p/6351892.html