commit: 6085a995505b5a9484e91c42ea6145c57c6523ba
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 1 02:09:26 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul 1 04:11:31 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6085a995
dev-util/peg: define phases in execution order
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-util/peg/peg-0.1.19.ebuild | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/dev-util/peg/peg-0.1.19.ebuild b/dev-util/peg/peg-0.1.19.ebuild
index 05c9101c48f7..981f41d41871 100644
--- a/dev-util/peg/peg-0.1.19.ebuild
+++ b/dev-util/peg/peg-0.1.19.ebuild
@@ -32,6 +32,13 @@ src_compile() {
LDFLAGS="${LDFLAGS}"
}
+src_test() {
+ emake check test \
+ CC="$(tc-getCC)" \
+ CFLAGS="${CFLAGS}" \
+ LDFLAGS="${LDFLAGS}"
+}
+
src_install() {
emake \
ROOT="${D}" \
@@ -41,10 +48,3 @@ src_install() {
rm -r "${D}/usr/man" || die
doman src/${PN}.1
}
-
-src_test() {
- emake check test \
- CC="$(tc-getCC)" \
- CFLAGS="${CFLAGS}" \
- LDFLAGS="${LDFLAGS}"
-}