Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Jan 2015 13:52:59 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 197131] net-mgmt/netdot fails to build due to rrdtool path in var/Makefile
Message-ID:  <bug-197131-13-JHoLd0Dfih@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-197131-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-197131-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=197131

--- Comment #2 from nick@foobar.org ---
rrdtool is included in RUN_DEPENDS, so will be in place before installation is
attempted by the ports system.

If ${PREFIX}/bin or ${PREFIX}/sbin are not present in ${PATH}, that's a local
environment problem, not an installation problem.

Other than that, the default installation prefix in the root level Makefile
should definitely include ${PREFIX}:

---
-   PERL        ?= /usr/bin/perl
-   PREFIX      ?= /usr/local/www/netdot
---
+   PERL        ?= ${PREFIX}/bin/perl
+   PREFIX      ?= ${PREFIX}/www/netdot

I'll take a look at patching this up in the next short while

-- 
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-197131-13-JHoLd0Dfih>