[Bug 194578] sysutils/vagrant: Error setting certificate verify locations

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sun Nov 9 08:19:53 UTC 2014


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194578

John Marino <marino at FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |marino at FreeBSD.org

--- Comment #11 from John Marino <marino at FreeBSD.org> ---
You created one directory twice (two methods) and created another with a
different method.  

replace:
68        ${MKDIR} ${STAGEDIR}${DATADIR}/embedded
69        ${INSTALL} -d -m 0755 ${STAGEDIR}${DATADIR}/embedded
70        ${INSTALL} -d -m 0755 ${STAGEDIR}${DATADIR}/embedded/rgloader

with

        ${MKDIR} ${STAGEDIR}${DATADIR}/embedded/rgloader


You don't need to create embedded, then embedded/rgloader.
MKDIR is "mkdir -p" which creates all necessary directories in between

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


More information about the freebsd-ports-bugs mailing list