diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-07-24 14:24:48 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-07-24 14:24:48 +0000 |
commit | 01dd60cb9156c4a361558995323c018d2ead7ad1 (patch) | |
tree | 291fbef29826e7a1ae970a557cf2aae9ecdab7c6 /src/auto | |
parent | 688e5f7ee7e9384494e9c16ae48c512980c54e4f (diff) | |
download | vim-git-01dd60cb9156c4a361558995323c018d2ead7ad1.tar.gz |
updated for version 7.2b-014v7.2b.014
Diffstat (limited to 'src/auto')
-rwxr-xr-x | src/auto/configure | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/auto/configure b/src/auto/configure index 1843a9e38..b965261e0 100755 --- a/src/auto/configure +++ b/src/auto/configure @@ -5114,16 +5114,17 @@ $as_echo "can't find it!" >&6; } $as_echo_n "(cached) " >&6 else - tmp_mkf="/tmp/Makefile-conf$$" - cat ${PYTHON_CONFDIR}/Makefile - <<'eof' >${tmp_mkf} + pwd=`pwd` + tmp_mkf="$pwd/config-PyMake$$" + cat -- "${PYTHON_CONFDIR}/Makefile" - <<'eof' >"${tmp_mkf}" __: @echo "python_MODLIBS='$(MODLIBS)'" @echo "python_LIBS='$(LIBS)'" @echo "python_SYSLIBS='$(SYSLIBS)'" @echo "python_LINKFORSHARED='$(LINKFORSHARED)'" eof - eval "`cd ${PYTHON_CONFDIR} && make -f ${tmp_mkf} __ | sed '/ directory /d'`" - rm -f ${tmp_mkf} + eval "`cd ${PYTHON_CONFDIR} && make -f "${tmp_mkf}" __ | sed '/ directory /d'`" + rm -f -- "${tmp_mkf}" if test "x$MACOSX" = "xyes" && ${vi_cv_path_python} -c \ "import sys; sys.exit(${vi_cv_var_python_version} < 2.3)"; then vi_cv_path_python_plibs="-framework Python" |