diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2009-01-08 06:18:46 +0800 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2009-01-08 06:18:46 +0800 |
commit | 4f6b0e9f2c45c8fe87c5d27c06a78aa682342a6f (patch) | |
tree | 204fe572bb3aef1279f709f48ecaf6a247d7326a /archivers/lzo2 | |
parent | dc4fbf696ee5c27fbdcb13781c637756ee1f4822 (diff) | |
download | freebsd-ports-gnome-4f6b0e9f2c45c8fe87c5d27c06a78aa682342a6f.tar.gz freebsd-ports-gnome-4f6b0e9f2c45c8fe87c5d27c06a78aa682342a6f.tar.zst freebsd-ports-gnome-4f6b0e9f2c45c8fe87c5d27c06a78aa682342a6f.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)
Diffstat (limited to 'archivers/lzo2')
-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) |