Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Nov 2014 14:11:01 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 194578] sysutils/vagrant: Error setting certificate verify locations
Message-ID:  <bug-194578-13-VvvUFAg5tL@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-194578-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-194578-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=194578

--- Comment #18 from John Marino <marino@FreeBSD.org> ---
This is very, very close.  however, you added this line:

+ENV["VAGRANT_INSTALLER_EMBEDDED_DIR"] = '/usr/local/share/vagrant/embedded'

The "/usr/local/" is not guaranteed.

You might try this:
+ENV["VAGRANT_INSTALLER_EMBEDDED_DIR"] = '@PREFIX@/share/vagrant/embedded'

and then use post-patch target like this:
  @${REINPLACE_CMD} -e 's|@PREFIX|${PREFIX}|g' ${WRKSRC}/path/to/file


then your patch will be good for non-standard locations.

-- 
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-194578-13-VvvUFAg5tL>