从源代码构建时出现Python 2.7.6错误:gcc.orig:directory“:没有这样的文件或目录

时间:2014-12-10 19:13:59

标签: python python-2.7 rhel

我在工作中配置了一个非常简单的RHEL 4.4;例如,它没有安装java或gcc。

我已按照this guide成功在另一个VM(RHEM 4.6)上安装python 2.7.6。但是在这个新的虚拟机上,如果没有出现此错误,我无法make

gcc -pthread -c -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include   -DPy_BUILD_CORE \
          -DSVNVERSION="\"`LC_ALL=C echo Unversioned directory`\"" \
          -DHGVERSION="\"`LC_ALL=C `\"" \
          -DHGTAG="\"`LC_ALL=C `\"" \
          -DHGBRANCH="\"`LC_ALL=C `\"" \
          -o Modules/getbuildinfo.o ./Modules/getbuildinfo.c
gcc.orig: directory": No such file or directory
<command-line>: warning: missing terminating " character
./Modules/getbuildinfo.c: In function â_Py_svnversionâ:
./Modules/getbuildinfo.c:63: error: missing terminating " character
./Modules/getbuildinfo.c:63: error: expected expression before â;â token
make: *** [Modules/getbuildinfo.o] Error 1

我尝试了此无关的bug报告中的建议:

SVNVERSION="Unversioned directory"
./configure
make

但收到同样的错误。

我在超级用户上看到了这个问题,建议检查svnversion目录中Modules命令的输出,但我没有svn或{{1}在这台机器上。它还建议编辑svnversion中的_PY_svnversion函数,但我收到了同样的错误。

有什么想法吗?

1 个答案:

答案 0 :(得分:5)

好的我在我的案例中找到了答案:

问题configure将创建新的Makefile 使用vi。

编辑Makefile

搜索SVNVERSION并将其设置为

SVNVERSION=    "" 

enter image description here

然后

make就可以了。