1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Fix incorrect paths to gzip, chown, and chgrp.

PR:		ports/135414
Submitted by:	Antonio Querubin <tony lava net>
Approved by:	maintainer
This commit is contained in:
Xin LI 2009-06-15 16:42:41 +00:00
parent 1fb54fcd71
commit 5a7c5ace94
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=235881
2 changed files with 21 additions and 0 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= prayer
PORTVERSION= 1.3.1
PORTREVISION= 1
CATEGORIES= mail www
MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/email/prayer/

View File

@ -0,0 +1,20 @@
--- utils/prayer-cyclog.SRC 2003/04/15 13:00:03 1.1
+++ utils/prayer-cyclog.SRC 2003/07/30 18:43:46
@@ -4,9 +4,16 @@
suffix=gz
# Following is correct for Linux.
-compress="/bin/gzip"
-chown="/bin/chown"
-chgrp="/bin/chgrp"
+#compress="/bin/gzip"
+#chown="/bin/chown"
+#chgrp="/bin/chgrp"
+#mv="/bin/mv"
+#rm="/bin/rm"
+
+# Following is correct for FreeBSD
+compress="/usr/bin/gzip"
+chown="/usr/sbin/chown"
+chgrp="/usr/bin/chgrp"
mv="/bin/mv"
rm="/bin/rm"