From 8b5fc7a7b28d177e68c779c7f8d5ee68f8b8e502 Mon Sep 17 00:00:00 2001 From: 0x5c Date: Wed, 30 Mar 2022 02:05:43 -0400 Subject: [PATCH] Manual.md: document the check functions The pre_/do_/post_check functions were not listed in the list of building phase functions, and were not mentioned elsewhere (do_check was mentioned once). This documents their existence. --- Manual.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Manual.md b/Manual.md index af5f698debae..8ec755499bbe 100644 --- a/Manual.md +++ b/Manual.md @@ -1101,7 +1101,13 @@ still be passed in if it's a GNU configure script. - `post_build()` Actions to execute after `do_build()`. -- `pre_install()` Actions to execute after `post_build()`. +- `pre_check()` Actions to execute after `post_build()`. + +- `do_check()` Actions to execute to run checks for the package. + +- `post_check()` Actions to execute after `do_check()`. + +- `pre_install()` Actions to execute after `post_check()`. - `do_install()` Actions to execute to install the package files into the `fake destdir`.