Explorar el Código

use environment variable "${CPP}" if defined

pull/37/head
Yamashita Yuu hace 13 años
padre
commit
ff387010b3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      plugins/python-build/bin/python-build

+ 1
- 1
plugins/python-build/bin/python-build Ver fichero

@ -724,7 +724,7 @@ has_broken_mac_readline() {
local conftest="$BUILD_PATH/has_broken_mac_readline.h"
if [ "$(uname -s)" = "Darwin" ]; then
echo "#include <readline/rlconf.h>" > "$conftest"
cpp $CFLAGS $CPPFLAGS $LDFLAGS "$conftest" 1>/dev/null 2>&1 || retval=0
"${CPP:-cpp}" $CFLAGS $CPPFLAGS $LDFLAGS "$conftest" 1>/dev/null 2>&1 || retval=0
rm -f "$conftest"
fi
return "$retval"

Cargando…
Cancelar
Guardar