diff options
author | marino <marino@FreeBSD.org> | 2013-10-07 06:19:27 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2013-10-07 06:19:27 +0800 |
commit | 4481fe035d4e8d94c09ba390c4fcd57bb5abf646 (patch) | |
tree | 2ede4cbf06d4883cdc65fa1b3a6d7d6fcafbcf87 /net-im | |
parent | dd64b460ee4b97c05ea096a83aaa962204e6aefe (diff) | |
download | freebsd-ports-graphics-4481fe035d4e8d94c09ba390c4fcd57bb5abf646.tar.gz freebsd-ports-graphics-4481fe035d4e8d94c09ba390c4fcd57bb5abf646.tar.zst freebsd-ports-graphics-4481fe035d4e8d94c09ba390c4fcd57bb5abf646.zip |
Remove verbose flag from install command of three unmaintained ports
It appears that the -v option (verbose) is handled slightly differently
on DragonFly. FreeBSD appears to be intolerant of where it appears in
the command line while the DragonFly version of "install" insists that
it appear in the early group of options.
In any case, these three ports may be the only ones in the entire ports
collection to use -v switch with ${INSTALL_DATA}, so for the sake of
compatibility and consistency, it is being removed from these
unmaintained ports which also local patches to be removed from DPorts.
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/jabber-pyicq/Makefile | 4 | ||||
-rw-r--r-- | net-im/jabber-pymsn/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/net-im/jabber-pyicq/Makefile b/net-im/jabber-pyicq/Makefile index 5fced97e642..2c0b621d2c8 100644 --- a/net-im/jabber-pyicq/Makefile +++ b/net-im/jabber-pyicq/Makefile @@ -113,9 +113,9 @@ do-install: @${MKDIR} ${DOCSDIR} . for portdoc in ${PORTDOCS} @if [ -f ${WRKDIR}/${portdoc} ]; then \ - ${INSTALL_DATA} -v ${WRKDIR}/${portdoc} ${DOCSDIR}/; \ + ${INSTALL_DATA} ${WRKDIR}/${portdoc} ${DOCSDIR}/; \ else \ - ${INSTALL_DATA} -v ${WRKSRC}/${portdoc} ${DOCSDIR}/; \ + ${INSTALL_DATA} ${WRKSRC}/${portdoc} ${DOCSDIR}/; \ fi . endfor .endif diff --git a/net-im/jabber-pymsn/Makefile b/net-im/jabber-pymsn/Makefile index f3cfae1a4b0..939d4b4e570 100644 --- a/net-im/jabber-pymsn/Makefile +++ b/net-im/jabber-pymsn/Makefile @@ -120,9 +120,9 @@ do-install: @${MKDIR} ${DOCSDIR} .for portdoc in ${PORTDOCS} @if [ -f ${WRKDIR}/${portdoc} ]; then \ - ${INSTALL_DATA} -v ${WRKDIR}/${portdoc} ${DOCSDIR}/; \ + ${INSTALL_DATA} ${WRKDIR}/${portdoc} ${DOCSDIR}/; \ else \ - ${INSTALL_DATA} -v ${WRKSRC}/${portdoc} ${DOCSDIR}/; \ + ${INSTALL_DATA} ${WRKSRC}/${portdoc} ${DOCSDIR}/; \ fi .endfor .endif |