Parcourir la source

fix broken string match in `has_broken_mac_llvm_gcc()`

pull/37/head
Yamashita Yuu il y a 11 ans
Parent
révision
4c006959fa
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      plugins/python-build/bin/python-build

+ 1
- 1
plugins/python-build/bin/python-build Voir le fichier

@ -771,7 +771,7 @@ has_broken_mac_readline() {
has_broken_mac_llvm_gcc() {
[ "$(uname -s)" = "Darwin" ] &&
[ "$(gcc --version 2>/dev/null || true)" = "llvm-gcc-4.2" ]
[[ "$(gcc --version 2>/dev/null || true)" == *"llvm-gcc-4.2"* ]]
}
# Post-install check for Python 2.5.x

Chargement…
Annuler
Enregistrer