During the complilation of the VLC media player from source code,there maybe a error about luac show up.
LUAC lua/intf/rc.luac
/bin/bash: -o: command not found
make[3]: *** [lua/intf/rc.luac] Error 127
|
Solution:
$ sudo apt-get install lua5.1 liblua5.1-dev
$ cd vlc/share
$ for f in `find . | grep '\.lua$'`; do f2=`echo $f | sed 's/lua$/luac/g'`;
$ ln -sf `basename $f` $f2;
$ done
|
Then make.
阅读(2135) | 评论(0) | 转发(0) |