diff options
author | wxs <wxs@FreeBSD.org> | 2008-12-17 23:42:36 +0800 |
---|---|---|
committer | wxs <wxs@FreeBSD.org> | 2008-12-17 23:42:36 +0800 |
commit | 6fe263a9c7eb1f1c7a531b4831242ecc36aa8692 (patch) | |
tree | b1f7f6fddcaa2a2f75ed8ed3908dc84ccf30b3db /devel | |
parent | 5369dcf3d5b0485718d583f26d056e5ac065c265 (diff) | |
download | freebsd-ports-gnome-6fe263a9c7eb1f1c7a531b4831242ecc36aa8692.tar.gz freebsd-ports-gnome-6fe263a9c7eb1f1c7a531b4831242ecc36aa8692.tar.zst freebsd-ports-gnome-6fe263a9c7eb1f1c7a531b4831242ecc36aa8692.zip |
- Fix git-p4import so it is not zero size.
PR: ports/129689
Submitted by: Evan Powers <evan.powers+bsdbug@gmail.com>
Diffstat (limited to 'devel')
-rw-r--r-- | devel/git/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/devel/git/Makefile b/devel/git/Makefile index 01e74006f5df..f8d94165d344 100644 --- a/devel/git/Makefile +++ b/devel/git/Makefile @@ -7,6 +7,7 @@ PORTNAME= git PORTVERSION= 1.6.0.5 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://www.kernel.org/pub/software/scm/git/ DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \ @@ -271,8 +272,9 @@ post-patch: post-build: .ifdef (WITH_P4) - @${REINPLACE_CMD} -e'1s|#!/usr/bin/python|#!${PYTHON_CMD}|' \ - ${WRKSRC}/contrib/p4import/git-p4import.py > \ + @${REINPLACE_CMD} -e '1s|#!/usr/bin/python|#!${PYTHON_CMD}|' \ + ${WRKSRC}/contrib/p4import/git-p4import.py + @${CP} ${WRKSRC}/contrib/p4import/git-p4import.py \ ${WRKSRC}/contrib/p4import/git-p4import .endif |