错误一:

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即可完成编译

最新文章

  1. virtualBox 打开旧的ubuntu虚拟机镜像时找不到网卡的解决方法
  2. CentOS安装wordpress权限问题
  3. 性能测试-ORACLE性能监控
  4. C++/MFC如何启动另一个应用程序并获取其进程 ID
  5. Codeforces Beta Round #17 A - Noldbach problem 暴力
  6. git的作用和原理(待续)
  7. VS2010/MFC编程入门之二(利用MFC向导生成单文档应用程序框架)
  8. 项目上传svn出问题
  9. jquery弹窗插件
  10. Spring Boot Web Executable Demo
  11. 转:iOS开发之多种Cell高度自适应实现方案的UI流畅度分析
  12. 【Bootstrap】bootstrap-datetimepicker日期时间插件
  13. PythonStudy——逻辑运算符 Logical Operators
  14. 性感天才黑客乔治·霍兹George Hotz 17岁打脸乔布斯20岁搞疯索尼
  15. iOS学习笔记之触摸事件&UIResponder
  16. ubuntu16.10 安装ibus中文输入法
  17. 反射中的BindingFlags
  18. Seay源代码审计系统的配置和安装
  19. golang 学习笔记 ---Sizeof
  20. 矩阵二分快速幂优化dp动态规划

热门文章

  1. 小白也能弄得懂的目标检测YOLO系列之YOLOv1网络训练
  2. C007:输入美元数量,用最少的20美元,10美元,5美元和1美元付款
  3. zt:HttpUrlConnection使用详解
  4. postgres 无法删除表
  5. OneDrive Weblist
  6. java 多线程-1
  7. Python 字符串去除相邻重复的元素
  8. 关于while (~scanf("%d %d", &m, &n))的用法
  9. pytest文档3-pytest+Allure+jenkins+邮箱发送
  10. [LeetCode]603. 连续空余座位(Mysql、自连接)