From 3178089935849dbafedf7c73f611cdef67994100 Mon Sep 17 00:00:00 2001 Message-Id: <3178089935849dbafedf7c73f611cdef67994100.1715502006.git.mdw@distorted.org.uk> From: Mark Wooding Date: Fri, 28 Sep 2007 18:32:29 +0100 Subject: [PATCH] exclude nonsense finkbindir Organization: Straylight/Edgeware From: rjk@greenend.org.uk <> --- server/disorderd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/disorderd.c b/server/disorderd.c index 1100140..3cb56d0 100644 --- a/server/disorderd.c +++ b/server/disorderd.c @@ -191,7 +191,7 @@ static void fix_path(void) { if(!path) error(0, "PATH is not set at all!"); - if(*finkbindir) + if(*finkbindir && strcmp(finkbindir, "/")) /* We appear to be a finkized mac; include fink on the path in case the * tools we need are there. */ byte_xasprintf(&newpath, "PATH=%s:%s:%s:%s", -- [mdw]