Fix a case where allflavors was forgotten.

Sponsored by:	Absolight
This commit is contained in:
Mathieu Arnold 2017-12-01 11:57:49 +00:00
parent ec88ea0582
commit d8c5f4c2d1
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=51249

View file

@ -275,13 +275,18 @@ USE_PYTHON= distutils allflavors</programlisting>
<programlisting>USES= python:-3.5
USE_PYTHON= distutils</programlisting>
<para>Will get this flavor: <literal>py27</literal>.</para>
<programlisting>USES= python:-3.5
USE_PYTHON= distutils allflavors</programlisting>
<para>Will get these flavors: <literal>py27</literal>,
<literal>py34</literal>, and <literal>py35</literal>.</para>
<programlisting>USES= python:3.4+
USE_PYTHON= distutils</programlisting>
<para>Will get these flavors: <literal>py36</literal>.</para>
<para>Will get this flavor: <literal>py36</literal>.</para>
<programlisting>USES= python:3.4+
USE_PYTHON= distutils allflavors</programlisting>