aboutsummaryrefslogtreecommitdiff
path: root/utils/procps-ng/patches/100-no-tests-docs.patch
Commit message (Collapse)AuthorAge
* procps-ng: update to 4.0.4krant2024-02-04
| | | | | | - Update the patch Signed-off-by: krant <aleksey.vasilenko@gmail.com>
* treewide: Run refresh on all packagesIlya Lipnitskiy2021-02-20
| | | | | | | | | The crude loop I wrote to come up with this changeset: find -L package/feeds/packages/ -name patches | \ sed 's/patches$/refresh/' | sort | xargs make Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
* procps-ng: Update to 3.3.15Rosen Penev2018-09-17
| | | | | | Switch from locally generated git tarball to official one. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* procps-ng: fix build on systems without gettext development utilitiesJo-Philipp Wich2016-06-24
The current procps-ng Makefile calls the shipped autogen.sh script which introduces incorrect implicit dependencies on host utilities, leading to the following error observed on a minimal build system: (cd .../procps-ng-3.3.11; echo "3.3.11" > ".../procps-ng-3.3.11/.tarball-version"; ./autogen.sh ); You must have autopoint installed to generate procps-ng build system. The autopoint command is part of the GNU gettext package. Makefile:96: recipe for target '.../procps-ng-3.3.11/.configured_yynyyyyy' failed make[3]: *** [.../procps-ng-3.3.11/.configured_yynyyyyy] Error 1 Apply the following changes in order to fix compilation: - Apply the generic autoreconf fixup to generate configure and Makefiles - Use Build/Prepare to populate .tarball-version and revert Build/Configure to its default implementation - Disable to build of docs and tests as those require additional utilities not guaranteed to be present Fixes #2890. Signed-off-by: Jo-Philipp Wich <jo@mein.io>