Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 May 2015 16:56:56 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 200315] lang/rust: No rule to make target 'prepare_install'
Message-ID:  <bug-200315-13-HqIare7p7V@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-200315-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-200315-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=200315

--- Comment #5 from Chris Hutchinson <portmaster@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.



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