1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00

Fix regression in previous commit that broke NOPORTDOCS=yes installs.

Only remove /html/img if NOPORTDOCS is undefined.
This commit is contained in:
Matthias Andree 2010-08-18 18:59:56 +00:00
parent a4345ebd12
commit 791032c859
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=259524
3 changed files with 6 additions and 3 deletions

View File

@ -107,8 +107,9 @@ post-install:
.if defined(NOPORTDOCS)
@${INSTALL_MAN} ${WRKSRC}/tools/clang/docs/tools/clang.1 \
${MANPREFIX}/man/man1/
.endif
.else
@${RMDIR} ${DOCSDIR}/html/img
.endif
TEST_CMD= '(cd ${WRKSRC}/test; ${SETENV} ${MAKE_ENV} ${GMAKE} check)'
regression-test: ${BUILD_COOKIE}

View File

@ -107,8 +107,9 @@ post-install:
.if defined(NOPORTDOCS)
@${INSTALL_MAN} ${WRKSRC}/tools/clang/docs/tools/clang.1 \
${MANPREFIX}/man/man1/
.endif
.else
@${RMDIR} ${DOCSDIR}/html/img
.endif
TEST_CMD= '(cd ${WRKSRC}/test; ${SETENV} ${MAKE_ENV} ${GMAKE} check)'
regression-test: ${BUILD_COOKIE}

View File

@ -107,8 +107,9 @@ post-install:
.if defined(NOPORTDOCS)
@${INSTALL_MAN} ${WRKSRC}/tools/clang/docs/tools/clang.1 \
${MANPREFIX}/man/man1/
.endif
.else
@${RMDIR} ${DOCSDIR}/html/img
.endif
TEST_CMD= '(cd ${WRKSRC}/test; ${SETENV} ${MAKE_ENV} ${GMAKE} check)'
regression-test: ${BUILD_COOKIE}