LD_LIBRARY_PATH shouldn't contain the current directory when building glibc. Please change the envir

실행 #./glibc-2.14/configure에서 다음 오류가 발생했습니다.
checking LD_LIBRARY_PATH variable... contains current directory
configure: error: 
*** LD_LIBRARY_PATH shouldn't contain the current directory when
*** building glibc. Please change the environment variable
*** and run configure again.

문제 분석: LD_LIBRARY_PATH는 현재 디렉터리를 포함할 수 없습니다. 환경 변수를 수정하고 configure를 다시 실행하십시오.
해결 방법:
[root@localhost opt]# echo $LD_LIBRARY_PATH
:/usr/local/lib
[root@localhost opt]# export LD_LIBRARY_PATH=
[root@localhost opt]# echo $LD_LIBRARY_PATH

[root@localhost opt]# ./glibc-2.14/configure 

좋은 웹페이지 즐겨찾기