From d08a502f93f40f641c20041d19f7f8d0da4c5c84 Mon Sep 17 00:00:00 2001 From: Mathieu Arnold Date: Fri, 31 Mar 2017 15:15:50 +0000 Subject: [PATCH] Remove ALWAYS_KEEP_DISTFILES, it is not used by anything. Sponsored by: Absolight --- .../porters-handbook/makefiles/chapter.xml | 33 ------------------- 1 file changed, 33 deletions(-) diff --git a/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml b/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml index 04f8e401ba..c912c1b3e2 100644 --- a/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml +++ b/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml @@ -3145,39 +3145,6 @@ PATCHFILES= patch1:test Makefile. - - - <varname>ALWAYS_KEEP_DISTFILES</varname> - - If the port uses binary distfiles and has a license that - requires that the source code is provided with packages - distributed in binary form, like GPL, - ALWAYS_KEEP_DISTFILES will instruct the - &os; build cluster to keep a copy of the files specified in - DISTFILES. Users of these ports will - generally not need these files, so it is a good idea to only - add the source distfiles to DISTFILES when - PACKAGE_BUILDING is defined. - - - - Use of - <varname>ALWAYS_KEEP_DISTFILES</varname> - - .if defined(PACKAGE_BUILDING) -DISTFILES+= foo.tar.gz -ALWAYS_KEEP_DISTFILES= yes -.endif - - - When adding extra files to DISTFILES, - make sure to also add them to distinfo. - Also, the additional files will normally be extracted into - WRKDIR as well, which for some ports may - lead to undesirable side effects and require special - handling. -