svn commit: r51249 - head/en_US.ISO8859-1/books/porters-handbook/flavors

Mathieu Arnold mat at FreeBSD.org
Fri Dec 1 11:57:51 UTC 2017


Author: mat
Date: Fri Dec  1 11:57:49 2017
New Revision: 51249
URL: https://svnweb.freebsd.org/changeset/doc/51249

Log:
  Fix a case where allflavors was forgotten.
  
  Sponsored by:	Absolight

Modified:
  head/en_US.ISO8859-1/books/porters-handbook/flavors/chapter.xml

Modified: head/en_US.ISO8859-1/books/porters-handbook/flavors/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/porters-handbook/flavors/chapter.xml	Fri Dec  1 11:57:47 2017	(r51248)
+++ head/en_US.ISO8859-1/books/porters-handbook/flavors/chapter.xml	Fri Dec  1 11:57:49 2017	(r51249)
@@ -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>


More information about the svn-doc-head mailing list