[Bug 200315] lang/rust: No rule to make target 'prepare_install'

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Wed May 20 16:56:57 UTC 2015


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

--- Comment #5 from Chris Hutchinson <portmaster at bsdforge.com> ---
If you're anxious. It's the permissions of the source.
changing the Make file from:

post-extract:
    @${MKDIR} ${WRKSRC}/dl
    ${LN} -sf ${DISTDIR}/${RUST_BOOT} ${WRKSRC}/dl

to:

post-extract:
    cd ${WRKSRC}
    find . -type d -exec chmod 0755 {} \;
    @${MKDIR} ${WRKSRC}/dl
    ${LN} -sf ${DISTDIR}/${RUST_BOOT} ${WRKSRC}/dl

worked for me. :)

--Chris

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


More information about the freebsd-ports-bugs mailing list