diff options
author | miwi <miwi@FreeBSD.org> | 2009-01-08 06:18:46 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2009-01-08 06:18:46 +0800 |
commit | 6876fc06a27abe5c20ee3bc3f7244c881885793f (patch) | |
tree | d35fece79b8a9ee2b77b5b9174f5f013fa7227d8 | |
parent | 5ac4d92429f539d6ff503ff0bbaf5b62f47f4b02 (diff) | |
download | freebsd-ports-gnome-6876fc06a27abe5c20ee3bc3f7244c881885793f.tar.gz freebsd-ports-gnome-6876fc06a27abe5c20ee3bc3f7244c881885793f.tar.zst freebsd-ports-gnome-6876fc06a27abe5c20ee3bc3f7244c881885793f.zip |
- Set MALLOC_OPTIONS=jz for self-test to avoid excessive (multiple hours!)
duration of self-tests. Found by Christian Weisgerber (naddy@).
PR: 130154
Submitted by: Matthias Andree <matthias.andree@gmx.de> (maintainer)
-rw-r--r-- | archivers/lzo2/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/archivers/lzo2/Makefile b/archivers/lzo2/Makefile index b51ac156262b..56ad60beca8e 100644 --- a/archivers/lzo2/Makefile +++ b/archivers/lzo2/Makefile @@ -24,8 +24,9 @@ CONFIGURE_ARGS= --enable-shared USE_LDCONFIG= yes post-build: - @${ECHO_MSG} "===> Running self-tests for ${PKGNAME} (can take a few minutes, without output)" - cd ${WRKSRC} && ${MAKE} test SHELL="${SH} -x" + @${ECHO_MSG} "===> Running self-tests for ${PKGNAME} (can take a few minutes)" + @#: override MALLOC_OPTIONS, else tests take excessively long + cd ${WRKSRC} && env MALLOC_OPTIONS=jz ${MAKE} check test SHELL="${SH} -x" post-install: .if !defined(NOPORTDOCS) |