svn commit: r472147 - in head/audio/jack: . files

Thomas Zander riggs at FreeBSD.org
Sun Jun 10 17:11:06 UTC 2018


Author: riggs
Date: Sun Jun 10 17:11:05 2018
New Revision: 472147
URL: https://svnweb.freebsd.org/changeset/ports/472147

Log:
  Fix startup script for FreeBSD 10: -o option is unknown
  
  PR:		228266
  Submitted by:	takefu at airport.fm
  MFH:		2018Q2

Modified:
  head/audio/jack/Makefile
  head/audio/jack/files/jackd.in

Modified: head/audio/jack/Makefile
==============================================================================
--- head/audio/jack/Makefile	Sun Jun 10 16:05:47 2018	(r472146)
+++ head/audio/jack/Makefile	Sun Jun 10 17:11:05 2018	(r472147)
@@ -3,7 +3,7 @@
 
 PORTNAME=	jackit
 PORTVERSION=	0.125.0
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	audio
 
 MAINTAINER=	multimedia at FreeBSD.org

Modified: head/audio/jack/files/jackd.in
==============================================================================
--- head/audio/jack/files/jackd.in	Sun Jun 10 16:05:47 2018	(r472146)
+++ head/audio/jack/files/jackd.in	Sun Jun 10 17:11:05 2018	(r472147)
@@ -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}


More information about the svn-ports-all mailing list