Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2096486
  • 博文数量: 229
  • 博客积分: 7217
  • 博客等级: 上校
  • 技术积分: 3224
  • 用 户 组: 普通用户
  • 注册时间: 2009-02-19 17:23
个人简介

个人主页https://xugaoxiang.com,微信公众号: Dev_Club 或者搜索 程序员Club

文章分类

全部博文(229)

文章存档

2017年(1)

2016年(20)

2015年(23)

2013年(1)

2012年(23)

2011年(68)

2010年(62)

2009年(31)

分类: LINUX

2010-03-27 17:35:13

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.
阅读(2102) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~