diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2014-03-18 22:26:57 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2014-03-18 22:26:57 +0800 |
commit | 9a6e27dbf1c2dee6f1493ab70257c72a1d9f2ac1 (patch) | |
tree | ffdf823f74a6103c3f4cbc16c1297de94f6eee89 /math | |
parent | 8af2256613799ff75267d21ea7ecbf748835c87a (diff) | |
download | freebsd-ports-gnome-9a6e27dbf1c2dee6f1493ab70257c72a1d9f2ac1.tar.gz freebsd-ports-gnome-9a6e27dbf1c2dee6f1493ab70257c72a1d9f2ac1.tar.zst freebsd-ports-gnome-9a6e27dbf1c2dee6f1493ab70257c72a1d9f2ac1.zip |
Quiesce mkdir
Diffstat (limited to 'math')
-rw-r--r-- | math/mathomatic/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/mathomatic/Makefile b/math/mathomatic/Makefile index 02129690eb5b..8c6d03b4f5a4 100644 --- a/math/mathomatic/Makefile +++ b/math/mathomatic/Makefile @@ -35,10 +35,10 @@ do-install: ${STAGEDIR}${PREFIX}/share/applications ${INSTALL_DATA} ${WRKSRC}/icons/mathomatic.png ${STAGEDIR}${PREFIX}/share/pixmaps .for d in m4 tests - ${MKDIR} ${STAGEDIR}${DOCSDIR}/${d} + @${MKDIR} ${STAGEDIR}${DOCSDIR}/${d} ${INSTALL_DATA} ${WRKSRC}/${d}/* ${STAGEDIR}${DOCSDIR}/${d} .endfor - ${MKDIR} ${STAGEDIR}${DOCSDIR}/html + @${MKDIR} ${STAGEDIR}${DOCSDIR}/html ${INSTALL_DATA} ${WRKSRC}/doc/* ${STAGEDIR}${DOCSDIR}/html .for f in AUTHORS README.txt changes.txt ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/ |