diff options
author | lioux <lioux@FreeBSD.org> | 2001-07-04 02:35:01 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2001-07-04 02:35:01 +0800 |
commit | 793cab7bce3b54009506ed0fad3d5cc198d07b3a (patch) | |
tree | 045d7de0fbe2bb7efff02ee2de932d0916df5a36 | |
parent | dac0b40261abf2fd720043a86d50a6b980e25b44 (diff) | |
download | freebsd-ports-gnome-793cab7bce3b54009506ed0fad3d5cc198d07b3a.tar.gz freebsd-ports-gnome-793cab7bce3b54009506ed0fad3d5cc198d07b3a.tar.zst freebsd-ports-gnome-793cab7bce3b54009506ed0fad3d5cc198d07b3a.zip |
o unecho commands
o cat -> ${CAT}
PR: 28593
Submitted by: Patrick Li <pat@databits.net>
-rw-r--r-- | audio/raproxy/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/raproxy/Makefile b/audio/raproxy/Makefile index b2dec9e97784..7c6f787d10dc 100644 --- a/audio/raproxy/Makefile +++ b/audio/raproxy/Makefile @@ -27,10 +27,10 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/raproxy.man ${PREFIX}/man/man8/raproxy.8 .if !defined(NOPORTDOCS) - -${MKDIR} ${PREFIX}/share/doc/raproxy - ${INSTALL_DATA} ${WRKSRC}/*.html ${WRKSRC}/*.pdf \ + @${MKDIR} ${PREFIX}/share/doc/raproxy + @${INSTALL_DATA} ${WRKSRC}/*.html ${WRKSRC}/*.pdf \ ${PREFIX}/share/doc/raproxy .endif - -cat ${PKGMESSAGE} + @${CAT} ${PKGMESSAGE} .include <bsd.port.mk> |