See the Makefile for devel/git (v 1.6.0.5): > # grep -C2 git-p4import.py Makefile > .ifdef (WITH_P4) > @${REINPLACE_CMD} -e'1s|#!/usr/bin/python|#!${PYTHON_CMD}|' \ > ${WRKSRC}/contrib/p4import/git-p4import.py > \ > ${WRKSRC}/contrib/p4import/git-p4import > .endif Note that that's RE*IN*PLACE_CMD, so git-p4import.py gets patched in-place without printing anything to stdout; thus, git-p4import is zero length. Fix: .ifdef (WITH_P4) @${CP} ${WRKSRC}/contrib/p4import/git-p4import.py \ ${WRKSRC}/contrib/p4import/git-p4import @${REINPLACE_CMD} -e'1s|#!/usr/bin/python|#!${PYTHON_CMD}|' \ ${WRKSRC}/contrib/p4import/git-p4import .endif How-To-Repeat: cd /usr/ports/devel/git make install
Responsible Changed From-To: freebsd-ports-bugs->wxs Over to maintainer (via the GNATS Auto Assign Tool)
wxs 2008-12-17 15:42:36 UTC FreeBSD ports repository Modified files: devel/git Makefile Log: - Fix git-p4import so it is not zero size. PR: ports/129689 Submitted by: Evan Powers <evan.powers+bsdbug@gmail.com> Revision Changes Path 1.43 +4 -2 ports/devel/git/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!