Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Apr 2015 18:28:23 +0000 (UTC)
From:      Hajimu UMEMOTO <ume@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r385002 - in head/net/mpd-l2tp-ipv6pd-client: . files
Message-ID:  <201504291828.t3TISNr2055239@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@mahoroba.org>
+# Copyright (c) 2007-2015 Hajimu UMEMOTO <ume@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
 }
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504291828.t3TISNr2055239>