]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
manual: remove package clean commands
authorThomas De Schampheleire <patrickdepinguin@gmail.com>
Sat, 7 Dec 2013 09:16:47 +0000 (10:16 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Sun, 8 Dec 2013 18:41:54 +0000 (19:41 +0100)
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
docs/manual/adding-packages-autotools.txt
docs/manual/adding-packages-cmake.txt
docs/manual/adding-packages-directory.txt
docs/manual/adding-packages-generic.txt
docs/manual/package-make-target.txt

index 27991b2595971b11df1b7fceacf058203eeb7afb..d0c92ffdb8baa555b530b54abd0a573d6cf6c771 100644 (file)
@@ -145,9 +145,6 @@ cases, typical packages will therefore only use a few of them.
   value is correct for most autotools packages, but it is still possible
   to override it if needed.
 
-* +LIBFOO_CLEAN_OPT+ contains the make options used to
-  clean the package. By default, the value is +clean+.
-
 With the autotools infrastructure, all the steps required to build
 and install the packages are already defined, and they generally work
 well for most autotools-based packages. However, when required, it is
index 4373423d33907b81816bd00e8d50088799674c8b..29f2b8f12706d67db12b435fab228c1d1c27e80e 100644 (file)
@@ -126,9 +126,6 @@ typical packages will therefore only use a few of them.
   for most CMake packages, but it is still possible to override it if
   needed.
 
-* +LIBFOO_CLEAN_OPT+ contains the make options used to clean the
-  package. By default, the value is +clean+.
-
 With the CMake infrastructure, all the steps required to build and
 install the packages are already defined, and they generally work well
 for most CMake-based packages. However, when required, it is still
index 700ec4fdbdb0d8b4bd9ebef2830e0c93511a9fc6..36b709308ce818dd5316be8ac46387b5fd6a7268 100644 (file)
@@ -269,7 +269,7 @@ different way, using different infrastructures:
   These are based on an infrastructure similar to the one used for
   autotools-based packages, but require a little more work from the
   developer. They specify what should be done for the configuration,
-  compilation, installation and cleanup of the package. This
+  compilation and installation of the package. This
   infrastructure must be used for all packages that do not use the
   autotools as their build system. In the future, other specialized
   infrastructures might be written for other build systems.  We cover
index 7ff0a6174cd9b7ee74064057e410eb94e756539e..14971b502ba9ae153ef387201fbb24684a11a0f3 100644 (file)
@@ -413,9 +413,6 @@ different steps of the build process.
   should be installed, since they might be needed to compile other
   packages.
 
-* +LIBFOO_CLEAN_CMDS+, lists the actions to perform to clean up
-  the build directory of the package.
-
 * +LIBFOO_INSTALL_INIT_SYSV+ and +LIBFOO_INSTALL_INIT_SYSTEMD+ list the
   actions to install init scripts either for the systemV-like init systems
   (busybox, sysvinit, etc.) or for the systemd units. These commands
index 8210e94ccf926e03795294a62cdcc6d033917916..9eefe680b0c6143b566a8a56070d1ee5018e19e1 100644 (file)
@@ -63,9 +63,6 @@ Additionally, there are some other useful make targets:
 | +show-depends+    | Displays the dependencies required to build the
 package
 
-| +clean+           | Run the clean command of the package; _note that
-  this is not implemented for all packages_
-
 | +dirclean+        | Remove the whole package build directory
 
 | +rebuild+         | Re-run the compilation commands - this only makes