89的代码上传window服务器前编过了,下载下来编译不过
时间:10-02
整理:3721RD
点击:
德(20814007) 14:07:21
89的代码上传window服务器前编过了,下载下来编译不过,zip error: Invalid command arguments (cannot repeat names in zip file)
出现这个错误.
解决方法:
修改alps\build\core Makefile,在824行添加@if [ -d $(TARGET_RECOVERY_OUT) ]; then find $(TARGET_RECOVERY_OUT) -name '*.svn' | xargs rm -rf; fi
mtk给的解释是有些image太大,编译的时候不能把svn信息编译进去了,不然会报错
,修改完后,重编android,就编译过了
89的代码上传window服务器前编过了,下载下来编译不过,zip error: Invalid command arguments (cannot repeat names in zip file)
出现这个错误.
解决方法:
修改alps\build\core Makefile,在824行添加@if [ -d $(TARGET_RECOVERY_OUT) ]; then find $(TARGET_RECOVERY_OUT) -name '*.svn' | xargs rm -rf; fi
mtk给的解释是有些image太大,编译的时候不能把svn信息编译进去了,不然会报错
,修改完后,重编android,就编译过了