svn commit: r385002 - in head/net/mpd-l2tp-ipv6pd-client: . files

Hajimu UMEMOTO ume at FreeBSD.org
Wed Apr 29 18:28:24 UTC 2015


Author: ume
Date: Wed Apr 29 18:28:23 2015
New Revision: 385002
URL: https://svnweb.freebsd.org/changeset/ports/385002

Log:
  Remove the absolute path from pgrep to make DragonFly happy.
  
  Spotted by:	naddy

Modified:
  head/net/mpd-l2tp-ipv6pd-client/Makefile
  head/net/mpd-l2tp-ipv6pd-client/files/dhcp6c_pd.sh.in

Modified: head/net/mpd-l2tp-ipv6pd-client/Makefile
==============================================================================
--- head/net/mpd-l2tp-ipv6pd-client/Makefile	Wed Apr 29 18:01:57 2015	(r385001)
+++ head/net/mpd-l2tp-ipv6pd-client/Makefile	Wed Apr 29 18:28:23 2015	(r385002)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	mpd-l2tp-ipv6pd-client
-PORTVERSION=	20140817
+PORTVERSION=	20150430
 #PORTREVISION=	0
 CATEGORIES=	net ipv6
 MASTER_SITES=	# none

Modified: head/net/mpd-l2tp-ipv6pd-client/files/dhcp6c_pd.sh.in
==============================================================================
--- head/net/mpd-l2tp-ipv6pd-client/files/dhcp6c_pd.sh.in	Wed Apr 29 18:01:57 2015	(r385001)
+++ head/net/mpd-l2tp-ipv6pd-client/files/dhcp6c_pd.sh.in	Wed Apr 29 18:28:23 2015	(r385002)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (c) 2007-2014 Hajimu UMEMOTO <ume at mahoroba.org>
+# Copyright (c) 2007-2015 Hajimu UMEMOTO <ume at mahoroba.org>
 # All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
@@ -47,7 +47,7 @@ getpid()
 		read pid junk < ${pidfile}
 		echo ${pid}
 	else
-		/bin/pgrep -f "dhcp6c -p ${pidfile}"
+		pgrep -f "dhcp6c -p ${pidfile}"
 	fi
 }
 


More information about the svn-ports-all mailing list