diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2018-07-14 16:37:43 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2018-07-14 16:37:43 +0800 |
commit | 04ece3a7912450dcef2cbc247d59cf49995850ea (patch) | |
tree | 063abb6f4f6130da130b380d926da7d7ab865a28 | |
parent | 5f8fb25949c896272f72d380d8ee0d7c4f393c8b (diff) | |
download | freebsd-ports-gnome-04ece3a7912450dcef2cbc247d59cf49995850ea.tar.gz freebsd-ports-gnome-04ece3a7912450dcef2cbc247d59cf49995850ea.tar.zst freebsd-ports-gnome-04ece3a7912450dcef2cbc247d59cf49995850ea.zip |
- Switch to new test framework
Approved by: portmgr blanket
-rw-r--r-- | security/pecl-crack/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/security/pecl-crack/Makefile b/security/pecl-crack/Makefile index 3b383d9d27b9..3a66da2f1636 100644 --- a/security/pecl-crack/Makefile +++ b/security/pecl-crack/Makefile @@ -22,10 +22,11 @@ CONFIGURE_ARGS= --with-crack=${LOCALBASE} CFLAGS+= -Wno-deprecated post-configure: - ${REINPLACE_CMD} -e 's|^\$$ini_overwrites.*|&'"'"'crack.default_dictionary=\"${LOCALBASE}/libdata/cracklib/pw_dict\"'"'"',|' \ + @${REINPLACE_CMD} -e 's|^\$$ini_overwrites.*|&'"'"'crack.default_dictionary=\"${LOCALBASE}/libdata/cracklib/pw_dict\"'"'"',|' \ ${WRKSRC}/run-tests.php -test check regression-test: build - ${MAKE} -C ${WRKSRC} test < /dev/null +do-test: + # XXX: 3 of 4 test fail + ${MAKE_CMD} -C ${WRKSRC} test < /dev/null .include <bsd.port.mk> |