Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 Jun 2013 18:53:08 +0000 (UTC)
From:      Boris Samorodov <bsam@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r321409 - head/comms/efax
Message-ID:  <201306201853.r5KIr8UD034430@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bsam
Date: Thu Jun 20 18:53:07 2013
New Revision: 321409
URL: http://svnweb.freebsd.org/changeset/ports/321409

Log:
  Absolute paths does not play good with pkg_* tools,
  while pkgng uses them just fine. So change current
  directory to / before touching /var files and directories.
  
  Spotted by:	antoine (thanks!)

Modified:
  head/comms/efax/pkg-plist

Modified: head/comms/efax/pkg-plist
==============================================================================
--- head/comms/efax/pkg-plist	Thu Jun 20 18:38:42 2013	(r321408)
+++ head/comms/efax/pkg-plist	Thu Jun 20 18:53:07 2013	(r321409)
@@ -3,7 +3,8 @@ bin/efax
 bin/efix
 etc/efax.rc.sample
 etc/efax.rc.sample.ja
-@unexec /bin/rm /var/spool/fax/outgoing/lock
-@dirrmtry /var/spool/fax/incoming
-@dirrmtry /var/spool/fax/outgoing
-@dirrmtry /var/spool/fax
+@cwd /
+var/spool/fax/outgoing/lock
+@dirrmtry var/spool/fax/incoming
+@dirrmtry var/spool/fax/outgoing
+@dirrmtry var/spool/fax



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