svn commit: r551596 - in head/audio/virtual_oss: . files
Hans Petter Selasky
hselasky at FreeBSD.org
Tue Oct 6 20:58:11 UTC 2020
Author: hselasky
Date: Tue Oct 6 20:58:10 2020
New Revision: 551596
URL: https://svnweb.freebsd.org/changeset/ports/551596
Log:
Fix path for virtual_oss when checking pidfile in rc.d file.
PR: 250046
Approved by: pi (implicit)
Modified:
head/audio/virtual_oss/Makefile
head/audio/virtual_oss/files/virtual_oss.in
Modified: head/audio/virtual_oss/Makefile
==============================================================================
--- head/audio/virtual_oss/Makefile Tue Oct 6 20:57:08 2020 (r551595)
+++ head/audio/virtual_oss/Makefile Tue Oct 6 20:58:10 2020 (r551596)
@@ -3,7 +3,7 @@
PORTNAME= virtual_oss
PORTVERSION= 1.2.6
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= audio
MASTER_SITES= http://www.selasky.org/hans_petter/distfiles/ \
http://home.selasky.org/distfiles/
Modified: head/audio/virtual_oss/files/virtual_oss.in
==============================================================================
--- head/audio/virtual_oss/files/virtual_oss.in Tue Oct 6 20:57:08 2020 (r551595)
+++ head/audio/virtual_oss/files/virtual_oss.in Tue Oct 6 20:58:10 2020 (r551596)
@@ -95,7 +95,7 @@ stop_instance()
if [ -z "${instance_args}" ]; then
echo "No such config ${config}"
elif [ -e "${pidpath}/${config}.pid" ]; then
- pid=`check_pidfile ${pidpath}/${config}.pid ${command}`
+ pid=`check_pidfile ${pidpath}/${config}.pid %%PREFIX%%/sbin/virtual_oss`
if [ ! -z "${pid}" ]; then
echo -n "Stopping Virtual OSS config ${config} ... "
kill $pid
More information about the svn-ports-all
mailing list