aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authoryar <yar@FreeBSD.org>2004-06-05 17:40:21 +0800
committeryar <yar@FreeBSD.org>2004-06-05 17:40:21 +0800
commit02bb4dcc5ea9b0186f7ce934aff182b9030ce6ca (patch)
treea09688edc88223d076490c2461b1f4c4651ffb68 /mail
parentaf82db1502485296d39093eb9509c00aeb3c0ed0 (diff)
downloadfreebsd-ports-gnome-02bb4dcc5ea9b0186f7ce934aff182b9030ce6ca.tar.gz
freebsd-ports-gnome-02bb4dcc5ea9b0186f7ce934aff182b9030ce6ca.tar.zst
freebsd-ports-gnome-02bb4dcc5ea9b0186f7ce934aff182b9030ce6ca.zip
Got to restore the full path to daemon(8) and the trailing `&'
since the workaround for old FreeBSD versions depends on them (see Makefile for details.) The workaround itself could be fixed, but that would make it less robust though. Pointed out by: vs
Diffstat (limited to 'mail')
-rw-r--r--mail/milter-sender/files/patch-ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/milter-sender/files/patch-ac b/mail/milter-sender/files/patch-ac
index 6ea41346c332..f8b171bdd3e1 100644
--- a/mail/milter-sender/files/patch-ac
+++ b/mail/milter-sender/files/patch-ac
@@ -19,7 +19,7 @@
- # Start the program in the background from a sub-shell
- # so that process will appear in the ps output immediately.
- sh -c "$PROGRAM $OPTIONS &"
-+ cd $STATE_DIR && daemon -f $PROGRAM $OPTIONS
++ cd $STATE_DIR && /usr/sbin/daemon -f $PROGRAM $OPTIONS &
- pid=`getpid "$PROGRAM"`
- if [ X"$pid" = X ]; then