diff options
author | sergei <sergei@FreeBSD.org> | 2004-03-26 06:15:48 +0800 |
---|---|---|
committer | sergei <sergei@FreeBSD.org> | 2004-03-26 06:15:48 +0800 |
commit | 9732e4cd8f0c82950ad29d14285271c5e2693ef6 (patch) | |
tree | f15a6c5faa8a4a71b0bf02b604b9173f1dc11bb5 /sysutils/socklog | |
parent | 1104d0294bb16b5c089c77e4757e07c5c89af324 (diff) | |
download | freebsd-ports-gnome-9732e4cd8f0c82950ad29d14285271c5e2693ef6.tar.gz freebsd-ports-gnome-9732e4cd8f0c82950ad29d14285271c5e2693ef6.tar.zst freebsd-ports-gnome-9732e4cd8f0c82950ad29d14285271c5e2693ef6.zip |
- Make running self-tests an optional step since it may fail
in some environments (particularlly, bento's).
Move it from do-build to a new test target.
Reported by: bento (via kris)
Diffstat (limited to 'sysutils/socklog')
-rw-r--r-- | sysutils/socklog/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysutils/socklog/Makefile b/sysutils/socklog/Makefile index 3886b6de7f40..8504ddea62de 100644 --- a/sysutils/socklog/Makefile +++ b/sysutils/socklog/Makefile @@ -26,7 +26,11 @@ do-configure: ${ECHO_CMD} "${CC} ${CFLAGS}" > ${WRKSRC}/src/conf-cc do-build: - cd ${WRKSRC} && package/compile && package/check + cd ${WRKSRC} && package/compile + @${ECHO_MSG} "Type 'make test' to run self-tests" + +test: + cd ${WRKSRC} && package/check do-install: ${INSTALL_PROGRAM} ${WRKSRC}/command/* ${PREFIX}/bin |