diff options
author | swills <swills@FreeBSD.org> | 2011-08-16 08:16:18 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2011-08-16 08:16:18 +0800 |
commit | 704cdf04d89204a3071b7b3b79605e6a5cea398b (patch) | |
tree | dfa41503bf31569bf5dd5786d8547c3dc1835899 /sysutils | |
parent | 47385414b60e3f6b9bf1ef210686263acd05a6f9 (diff) | |
download | freebsd-ports-gnome-704cdf04d89204a3071b7b3b79605e6a5cea398b.tar.gz freebsd-ports-gnome-704cdf04d89204a3071b7b3b79605e6a5cea398b.tar.zst freebsd-ports-gnome-704cdf04d89204a3071b7b3b79605e6a5cea398b.zip |
- Fix REINPLACE_ARGS to not make backup files and actually patch
Approved by: Russell Jackson <raj@csub.edu> (maintainer, private email)
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/mcollective/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sysutils/mcollective/Makefile b/sysutils/mcollective/Makefile index 641426ec0d39..8508092b559d 100644 --- a/sysutils/mcollective/Makefile +++ b/sysutils/mcollective/Makefile @@ -7,6 +7,7 @@ PORTNAME= mcollective PORTVERSION= 1.2.1 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://downloads.puppetlabs.com/${PORTNAME}/ EXTRACT_SUFX= .tgz @@ -19,7 +20,9 @@ RUN_DEPENDS= rubygem-stomp>=0:${PORTSDIR}/devel/rubygem-stomp NO_BUILD= yes USE_RUBY= yes USE_RC_SUBR= mcollectived -REINPLACE_ARGS= # don't make .bak files + +# don't make .bak files +REINPLACE_ARGS= -i "" SCRIPTS= mco \ mc-call-agent \ |