aboutsummaryrefslogtreecommitdiff
path: root/audio/jack
diff options
context:
space:
mode:
authorThomas Zander <riggs@FreeBSD.org>2018-06-10 17:11:05 +0000
committerThomas Zander <riggs@FreeBSD.org>2018-06-10 17:11:05 +0000
commita1df13d85ff54480cc199c2e17ec8f2030c182e3 (patch)
tree030317a9e113e2167aa7978bcc253578dfc3b5d0 /audio/jack
parent2be64a2ead4ca969a8ef98612bef8def235535fa (diff)
downloadports-a1df13d85ff54480cc199c2e17ec8f2030c182e3.tar.gz
ports-a1df13d85ff54480cc199c2e17ec8f2030c182e3.zip
Fix startup script for FreeBSD 10: -o option is unknown
PR: 228266 Submitted by: takefu@airport.fm MFH: 2018Q2
Notes
Notes: svn path=/head/; revision=472147
Diffstat (limited to 'audio/jack')
-rw-r--r--audio/jack/Makefile2
-rw-r--r--audio/jack/files/jackd.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/audio/jack/Makefile b/audio/jack/Makefile
index 02c846160ceb..6835d8fedaea 100644
--- a/audio/jack/Makefile
+++ b/audio/jack/Makefile
@@ -3,7 +3,7 @@
PORTNAME= jackit
PORTVERSION= 0.125.0
-PORTREVISION= 3
+PORTREVISION= 4
CATEGORIES= audio
MAINTAINER= multimedia@FreeBSD.org
diff --git a/audio/jack/files/jackd.in b/audio/jack/files/jackd.in
index b45c9fe28e06..dad627ff86af 100644
--- a/audio/jack/files/jackd.in
+++ b/audio/jack/files/jackd.in
@@ -30,7 +30,7 @@ start_jackd() {
# log the date and parameters
echo -e "\n[`date`] Starting the daemon, user=$jackd_user rtprio=$jackd_rtprio args=\"$jackd_args\"" >> /var/log/${name}.log
# daemon(8) should be able to set the realtime priority, but it isn't
- $rt daemon -p /var/run/${name}.pid -o /var/log/${name}.log -u "${jackd_user}" %%PREFIX%%/bin/jackd ${jackd_args}
+ $rt daemon -p /var/run/${name}.pid -u "${jackd_user}" %%PREFIX%%/bin/jackd ${jackd_args}
}
load_rc_config ${name}