Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 24 Oct 2014 22:20:24 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 184203] [NEW PORT] net/motsognir: an ANSI C gopher server
Message-ID:  <bug-184203-13-pmnWWNhXQS@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-184203-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-184203-13@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=184203

John Marino <marino@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Issue Resolved              |Open
         Resolution|Overcome By Events          |---

--- Comment #19 from John Marino <marino@FreeBSD.org> ---
moving to open.

This line isn't right:
X+  char *configfile = "/usr/local/etc/motsognir.conf";

You don't know that it's "/usr/local", it can be anything.  You need to replace
the old value with the value of ${PREFIX} in post-patch or something like that.

e.g. check it to 
X+  char *configfile = "@@PREFIX@@/etc/motsognir.conf";
and replace @@PREFIX@@ with prefix in post patch

(you can probably do the replacement without using a patch too)

-- 
You are receiving this mail because:
You are the assignee for the bug.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-184203-13-pmnWWNhXQS>