Summary: | [patch update] graphics/giflib NO_STAGE=yes | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Kurt Jaeger <fbsd-ports> | ||||
Component: | Individual Port(s) | Assignee: | Dirk Meyer <dinoex> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | CC: | dinoex | ||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
Kurt Jaeger
2013-10-03 20:10:00 UTC
Responsible Changed From-To: freebsd-ports-bugs->dinoex Over to maintainer (via the GNATS Auto Assign Tool) State Changed From-To: open->feedback I can not reproduce your problem. What commnads do you use? What error do you see? Hi! Sorry for the delay, I was busy with other ports. > Synopsis: [patch update] graphics/giflib NO_STAGE=yes > > State-Changed-From-To: open->feedback > State-Changed-By: dinoex > State-Changed-When: Fri Oct 4 12:03:32 CEST 2013 > State-Changed-Why: > > I can not reproduce your problem. > > What commnads do you use? > What error do you see? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=182611 On 10alpha4 amd64: http://opsec.eu/backup/20131007-giflib-make it fails to install. Setting NO_STAGE= yes in the Makefile fixes it. -- pi@opsec.eu +49 171 3101372 7 years to go ! Author: dinoex Date: Mon Oct 7 19:01:37 2013 New Revision: 329724 URL: http://svnweb.freebsd.org/changeset/ports/329724 Log: - fix option DOCBOOK was broken by STAGEDIR r328096 PR: 182611 Modified: head/graphics/giflib/Makefile Modified: head/graphics/giflib/Makefile ============================================================================== --- head/graphics/giflib/Makefile Mon Oct 7 18:44:30 2013 (r329723) +++ head/graphics/giflib/Makefile Mon Oct 7 19:01:37 2013 (r329724) @@ -50,9 +50,9 @@ post-patch: .if ${PORT_OPTIONS:MDOCBOOK} && ${PORT_OPTIONS:MDOCS} post-install: - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${STAGEDIR}${DOCSDIR} .endif .include <bsd.port.post.mk> _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: feedback->closed a fix has been committed, thanks. |