|
编译evas时,错误提示如下
- ../../../../libtool: line 1654: cd: NONE: No such file or directory
- libtool: link: cannot determine absolute directory name of `NONE'
- make[5]: *** [module.la] 错误 1
- make[5]: Leaving directory `/home/haterw/e17/e17/libs/evas/src/modules/engines/software_x11'
- make[4]: *** [all-recursive] 错误 1
- make[4]: Leaving directory `/home/haterw/e17/e17/libs/evas/src/modules/engines'
- make[3]: *** [all-recursive] 错误 1
- make[3]: Leaving directory `/home/haterw/e17/e17/libs/evas/src/modules'
- make[2]: *** [all-recursive] 错误 1
- make[2]: Leaving directory `/home/haterw/e17/e17/libs/evas/src'
- make[1]: *** [all-recursive] 错误 1
- make[1]: Leaving directory `/home/haterw/e17/e17/libs/evas'
- make: *** [all] 错误 2
复制代码
google搜了一下,只有个德国的ubuntu论坛有类似情况,翻译了都还看不懂,只知道是libtool中出问题了,
- # We need an absolute path.
- case $dir in
- [\\/]* | [A-Za-z]:[\\/]*) ;;
- *)
- absdir=`cd "$dir" && pwd`
- if test -z "$absdir"; then
- $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2
- exit $EXIT_FAILURE
- fi
- dir="$absdir"
- ;;
- esac
复制代码
想改脚本,又不太明白,软件方面只有autoconf与官方要求不符(要求2.54,我的2.59,怎么也找不到2.54)
我该怎么办?请高手指教 |
|