LINUX软件./configure 配置出现:configure: error: newly created file is older than distributed files!
当在安装tar源码包的时候出现以下报错如何解决?
[root@jieniruyan gst-fluendo-mp3-]# ./configurechecking for a BSD-compatible install... /usr/bin/install -cchecking whether build environment
is sane... configure: error: newly created file is older than distributed files!Check your ...
解释:注意观察,configure的文件时间大于当前系统时间
解决:1、将configure 拷贝成configure.bak
        2、删除configure
        3、拷贝configure.bak 为 configure
这样就可以了!欧耶
LINUX软件./configure 配置出现:configure: error: newly created file is older than distributed files!的更多相关文章
- configure: error: newly created file is older than distributed files!
		在linux下安装软件包的时候,有时候提示 configure: error: newly created file is older than distributed files!Check you ... 
- linux软件源配置
		实操(虚拟机安装): 下载VMware,然后按照如下教程安装虚拟机: https://jingyan.baidu.com/article/c275f6ba07e269e33d756714.html ... 
- linux下安装svn出现configure: error: We require OpenSSL; try --with-openssl
		linux下安装svn出现configure: error: We require OpenSSL; try --with-openssl http://blog.csdn.net/woshixion ... 
- Linux安装Nginx报错:   ./configure: error: C compiler cc is not found
		CentOS 7.3 下 安装 Nginx 执行配置命令 ./configure 时提示以下错误: checking for OS + Linux 2.6.32-431.el6.x86_64 x86_ ... 
- 安装完Kali linux 之后 需要配置的一些 常用软件 记录
		apt 阿里云开源镜像站 deb http://mirrors.aliyun.com/kali sana main non-free contribdeb http://mirrors.aliyun. ... 
- [转载]linux下编译php中configure参数具体含义
		编译N次了 原来这么回事 原文地址:linux下编译php中configure参数具体含义作者:捷心特 php编译参数的含义 ./configure –prefix=/usr/local/php ... 
- configure配置脚本的使用
		Linux下软件的安装一般由3个步骤组成: ./configure --host=arm-linux ... //配置 make //编译 make install //安装 若取消编译: make ... 
- CentOS 下 安装 nginx 执行配置命令 ./configure 报错
		CentOS 下 安装 nginx 执行配置命令 ./configure --prefix=/opt/nginx --sbin-path=/usr/bin/nginx 时提示以下错误: checkin ... 
- centos /usr/local  和/opt 安装软件你什么不同../configure --prefix=/usr...
		/usr/local下一般是你安装软件的目录,这个目录就相当于在windows下的programefiles这个目录(所有文件在一个文件夹) /opt这个目录是一些大型软件的安装目录,或者是一些服务程 ... 
随机推荐
- C++  const、volatile、mutable的用法 (转)
			const.volatile.mutable的用法 鸣谢作者: http://blog.csdn.net/wuliming_sc/article/details/3717017 const修饰普通 ... 
- javascript 技巧
			1.将arguments转化为数组函数中的预定义变量arguments并非一个真正的数组,而是一个类似数组的对象. 它具有length属性,但是没有slice, push, sort等函数,那么如何使 ... 
- malloc函数详解
			一.原型:extern void *malloc(unsigned int num_bytes); 头文件:#include <malloc.h> 或 #include <alloc ... 
- linux ps 命令
			ps命令是用来查看系统运行的进程 -A 显示所有进程(等价于-e)(utility) -a 显示一个终端的所有进程,除了会话引线 -N 忽略选择. -d 显示所有进程,但省略所有的会话引线(utili ... 
- C# Enum 简易权限设计 使用FlagsAttribute属性
			基本權限設計: /// <summary> /// 權限列舉 /// </summary> [FlagsAttribute] public enum Permissions { ... 
- AspNetPager分页
			1.页面部分 <%@ Register Assembly="AspNetPager" Namespace="Wuqi.Webdiyer" TagPrefi ... 
- 【转】 linux下的g++编译器安装
			再debian下直接apt-get install gcc g++就可以了.按照类似的逻辑,再Fedora下yum install gcc g++ 报告无法找到g++包. 查了一下,原来这个包的名字叫 ... 
- 《C++primer》v5 第3章 字符串、向量和数组 读书笔记 习题答案
			本章问题 1.char *p="hello world";与char p[]="hello world"的问题. 简单说前者是一个指向字符串常量的指针,后者是一 ... 
- SVG 2D入门10 - 滤镜
			滤镜称得上是SVG最强大的功能了,它允许你给图形(图形元素和容器元素)添加各种专业软件中才有的滤镜特效.这样你就很容易在客户端生成和修改图像了.而且滤镜并没有破坏原有文档的结构,所以维护性也很好. ... 
- php大力力 [039节]  修改一下后台项目,同时启用印象笔记,要做的事情todo列表,记录在印象笔记,速度快一些
			php大力力 [039节] 修改一下后台项目,同时启用印象笔记,要做的事情todo列表,记录在印象笔记,速度快一些 
