编译安装apr 1.5.2 时报 rm: cannot remove `libtoolT': No such file or directory

今天在编译安装apr-1.5.2 的时候执行./configure --prefix=/usr/local/apr 的时候报了一个这么样的信息

“ rm: cannot remove `libtoolT‘: No such file or directory”,详细如下图:

解决过程:

1、网上看了一下,有很多人使用如下三个命令解决了,但是我执行了一下,结果在重新./configure --prefix=/usr/local/apr 的时候还是报这个错误。

网上流传的三个命令如下:

# autoreconf --force --install

# libtoolize --automake --force

# automake --force --add-missing

2、检查libtool-2.2.6-15.5.el6.x86_64 包我是安装了的

3、后来编辑configure文件找到$RM 然后加入一个 -f 解决

总结:

实际上我感觉只是将这条信息屏蔽了而已,因为从下图可以看出RM是被赋予rm 命令的,但是我并没有真正的搞懂问题所在,因为rm -f 不管文件是否存在都不会返回信息,可能后续有时间在详细的看看configure 的整体过程才能了解。先安装上在说吧。

如哪位有更好的办法或者原理讲解的话还请不吝赐教!~ 在此谢过了

编译安装apr 1.5.2 时报 rm: cannot remove `libtoolT': No such file or directory

时间: 2024-09-30 11:09:58

编译安装apr 1.5.2 时报 rm: cannot remove `libtoolT': No such file or directory的相关文章

VS2012与VS2015同时安装用VS2012创建MFC程序时弹出编译错误”fatal error C1083: 无法打开包括文件:“mprapidef.h”: No such file or directory”的解决办法

在WIndows 7操作系统上同时安装VS2012与VS2015并用VS2012创建MFC程序时弹出编译错误"fatal error C1083: 无法打开包括文件:"mprapidef.h": No such file or directory"的解决办法: I installed vs2015 and vs2012, then the same problem occurs,however, I find a solution. open visual stud

php5.4 安装出现问题cp: cannot stat `sapi/cli/php.1': No such file or directory

在安装php5.4时出现下面的错误: 当make正常,但是使用make install出现错误:cp: cannot stat `sapi/cli/php.1': No such file or directory 解决的办法如下: make install fails -> cp: cannot stat sapi/cli/php.1: No such file So after doing some research I found the solution so just note to

编译C++,找不到头文件(fatal error: string: No such file or directory)

在androidproject中编译C++时,找不到头文件,报错例如以下: fatal error: string: No such file or directory 解决该问题须要在Android.mk文件里: LOCAL_C_INCLUDES :=  \                 bionic \                 external/stlport/stlport 编译C++,找不到头文件(fatal error: string: No such file or dir

mysql编译安装完成后,启动时报错The server quit without updating PID file

源码包下载: 编译安装: 设置配置文件: 添加启动脚本: 添加开机启动项: 完成后,/etc/init.d/mysqld start 时候报错如下: Starting MySQL..The server quit without updating PID file ( [FAILED] al/mysql/data/FrankTest01.pid). 1.防火墙SELINUX有没有关闭 2.3306端口有没有被占用   netstat -tulanp 3.是否有其他相关的mysqld进程在运行.

Python 安装zbar-py时出现 无法打开包括文件: “unistd.h” no such file or directory

问题 途中使用的命令是cl.exe,在执行命令的时候找不到对应的unistd.h文件. unistd.h是Unix系统的文件,因此,十有八九,使用的是Windows系统.下面的代码可以修复,但是如果修复了unistd.h,很大概率你还会有更多个*.h文件找不到.劝退. 解决 找到这个编译器所在的文件夹的include文件夹,并且unistd.h文件复制进去即可.可以新建一个文本文件,把名字和后缀名改为unistd.h. #ifndef _UNISTD_H #define _UNISTD_H 1

centos下LAMP之源码编译安装httpd

1 最好先安装组件 [[email protected] ~]# yum groupinstall additional development [[email protected] ~]# yum groupinstall development tool 2 安装ap1.5.2r(Apache Portable Runtime),安装apr-util 1.5.4工具 [[email protected] ~]wget http://mirrors.cnnic.cn/apache//apr/a

阿里云centos6.5实践编译安装LNMP架构web环境

LNMP 代表的就是:Linux系统下Nginx+MySQL+PHP这种网站服务器架构. 本次测试需求: **实践centos6.5编译安装 LNMP生产环境 架构 web生产环境 使用 ngx_pagespeed 优化前端 xcache 优化php 用 google_perftools 优化nginx 和 php内存分配 ** 作为 Web 服务器:相比 Apache,Nginx 使用更少的资源,支持更多的并发连接,体现更高的效率. 作为负载均衡服务器:Nginx 既可以在内部直接支持Rail

类centos6.5编译安装LNMP架构web环境

作为 Web 服务器:相比 Apache,Nginx 使用更少的资源,支持更多的并发连接,体现更高的效率. 作为负载均衡服务器:Nginx 既可以在内部直接支持Rails和PHP,也可以支持作为 HTTP代理服务器对外进行服务.Nginx 用C编写,不论是系统资源开销还是CPU使用效率都比Perlbal要好的多. 作为邮件代理服务器:Nginx同时也是一个非常优秀的邮件代理服务器(最早开发这个产品的目的之一也是作为邮件代理服务器),Last/fm 描述了成功并且美妙的使用经验. Nginx安装非

centos编译安装php5.6.20+nginx1.8.1+mysql5.6.17

LNMP 代表的就是:Linux系统下Nginx+MySQL+PHP这种网站服务器架构. 本次实践需求: 实践centos6.5编译安装 LNMP生产环境 架构 web生产环境 使用 xcache 优化php 作为 Web 服务器:相比 Apache,Nginx 使用更少的资源,支持更多的并发连接,体现更高的效率. 作为负载均衡服务器:Nginx既可以在内部直接支持Rails和PHP,也可以支持作为 HTTP代理服务器对外进行服务.Nginx用C编写,不论是系统资源开销还是CPU使用效率都比Pe