diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-03-18 14:26:57 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-03-18 14:26:57 +0000 |
commit | 50418f3429c458d9c665e20145ff04bf2b56c313 (patch) | |
tree | ffdf823f74a6103c3f4cbc16c1297de94f6eee89 /archivers | |
parent | 60aa3ad1bd4016e77a505cb9e1b0a5264739af44 (diff) |
Notes
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/ecm/Makefile | 2 | ||||
-rw-r--r-- | archivers/gzrecover/Makefile | 2 | ||||
-rw-r--r-- | archivers/mar/Makefile | 2 | ||||
-rw-r--r-- | archivers/ppmd/Makefile | 2 | ||||
-rw-r--r-- | archivers/unlzx/Makefile | 2 | ||||
-rw-r--r-- | archivers/unzoo/Makefile | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/archivers/ecm/Makefile b/archivers/ecm/Makefile index 74e07ff8694d..c7fdcf150ffd 100644 --- a/archivers/ecm/Makefile +++ b/archivers/ecm/Makefile @@ -23,7 +23,7 @@ do-install: .for f in ${PORTNAME} un${PORTNAME} ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin .endfor - ${MKDIR} ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> diff --git a/archivers/gzrecover/Makefile b/archivers/gzrecover/Makefile index b203818c7e97..2aa3ac751ef0 100644 --- a/archivers/gzrecover/Makefile +++ b/archivers/gzrecover/Makefile @@ -25,7 +25,7 @@ do-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}/${PREFIX}/bin - ${MKDIR} ${STAGEDIR}/${DOCSDIR} + @${MKDIR} ${STAGEDIR}/${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}/${DOCSDIR} .include <bsd.port.mk> diff --git a/archivers/mar/Makefile b/archivers/mar/Makefile index 9ae297d830dc..1eb80306798e 100644 --- a/archivers/mar/Makefile +++ b/archivers/mar/Makefile @@ -24,7 +24,7 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/man/man1/mar.1 \ ${STAGEDIR}${MAN1PREFIX}/man/man1 - ${MKDIR} ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/html/*.html ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> diff --git a/archivers/ppmd/Makefile b/archivers/ppmd/Makefile index 1502e08369d5..16ea6329c2d0 100644 --- a/archivers/ppmd/Makefile +++ b/archivers/ppmd/Makefile @@ -17,7 +17,7 @@ OPTIONS_DEFINE= DOCS do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 - ${MKDIR} ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> diff --git a/archivers/unlzx/Makefile b/archivers/unlzx/Makefile index 2705eee3ae39..d401a36c79f8 100644 --- a/archivers/unlzx/Makefile +++ b/archivers/unlzx/Makefile @@ -14,7 +14,7 @@ COMMENT= Extracts .lzx archives from Amiga systems PLIST_FILES= bin/unlzx do-extract: - ${MKDIR} ${WRKSRC} + @${MKDIR} ${WRKSRC} ${GZCAT} ${DISTDIR}/${DISTFILES} > ${WRKSRC}/${DISTNAME} do-build: diff --git a/archivers/unzoo/Makefile b/archivers/unzoo/Makefile index 65f3dcf33893..fb38fa6d05ed 100644 --- a/archivers/unzoo/Makefile +++ b/archivers/unzoo/Makefile @@ -22,7 +22,7 @@ PLIST_FILES= bin/unzoo man/man1/unzoo.1.gz CFLAGS+= -trigraphs post-extract: - @${MKDIR} ${WRKSRC} + @@${MKDIR} ${WRKSRC} @${MV} ${WRKDIR}/${PORTNAME}.c ${WRKSRC} do-build: |