fix(profiles): Disable Python 3.3 use flags

This is required for compatibility with the latest upstream profiles
which bump Python 3 from 3.2 to 3.3.
This commit is contained in:
Michael Marineau 2014-03-14 11:18:47 -07:00
parent 33df3b0f1c
commit ab27761f73

View File

@ -22,7 +22,9 @@ USE="${USE} -zeroconf"
# Override upstream's python settings # Override upstream's python settings
USE="$USE python_targets_python2_7 python_single_target_python2_7" USE="$USE python_targets_python2_7 python_single_target_python2_7"
USE="$USE -python_targets_python3_2 -python_single_target_python3_2" USE="$USE -python_targets_python3_2 -python_single_target_python3_2"
USE="$USE -python_targets_python3_3 -python_single_target_python3_3"
BOOTSTRAP_USE="$BOOTSTRAP_USE -python_targets_python3_2" BOOTSTRAP_USE="$BOOTSTRAP_USE -python_targets_python3_2"
BOOTSTRAP_USE="$BOOTSTRAP_USE -python_targets_python3_3"
# Default licenses that are accepted for ChromiumOS builds. # Default licenses that are accepted for ChromiumOS builds.
# If you want to accept more, use the --accept_licenses flag # If you want to accept more, use the --accept_licenses flag