From: fuzzyray Date: Fri, 7 Nov 2008 15:12:33 +0000 (-0000) Subject: Fix git support to work with git 1.6 (Bug #199805) X-Git-Tag: gentoolkit-0.2.4.3^2~39 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=453a2cf7d9257c9136730c89895943f994e804f9;p=gentoolkit.git Fix git support to work with git 1.6 (Bug #199805) svn path=/; revision=517 --- diff --git a/trunk/src/echangelog/echangelog b/trunk/src/echangelog/echangelog index 1a4bee7..3a5ac5b 100644 --- a/trunk/src/echangelog/echangelog +++ b/trunk/src/echangelog/echangelog @@ -114,7 +114,7 @@ while () { } elsif (/^([ARMD])\s+(\S+)/) { my ($status, $filename) = ($1,$2); if($vcs eq "git") { - open P, "git-rev-parse --sq --show-prefix |"; + open P, "git rev-parse --sq --show-prefix |"; my $prefix =

; $prefix = substr($prefix, 0, -1); close P;