Freetype 安装时提示 make: Nothing to be done for `unix'

 

[Software-Freetype] Freetype 安装时提示 make: Nothing to be done for `unix'  

官网下载的第三方软件包,编译安装会报以下错误,解决办法如下:

 

第一种:
make: Nothing to be done for `all' 解决方法

1.这句提示是说明你已经编译好了,而且没有对代码进行任何改动。

若想重新编译,可以先删除以前编译产生的目标文件:
make clean
然后再
make

实在不行就:
#ldconfig
上面所说的方法并不能解决题目上的错误,看下面的方法。
 
第二种方法:
make: Nothing to be done for `unix'.
 
centos5.8下安装freetype出错处理
 
configure: creating ./config.status 
config.status: creating unix-cc.mk 
config.status: creating unix-def.mk 
config.status: creating freetype-config 
config.status: creating freetype2.pc 
config.status: creating ftconfig.h 
  www.2cto.com  
FreeType build system -- automatic system detection 
 
make: Nothing to be done for `unix'.
 
处理办法:
 builds/unix在freetype下载解压的目录下。
 先进入 builds/unix目录,然后在里边运行./configure命令,运行该命令不会出现上边错误。
#cd  /usr/local/src/freetype-2.5.3/builds/unix
# ./configure --prefix=/usr/local/freetype --enable-shared
 
 
 
posted @ 2014-10-23 09:51  Linux.应用  阅读(6140)  评论(1编辑  收藏  举报