diff options
-rw-r--r-- | Makefile.PL | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/Makefile.PL b/Makefile.PL index ccea56e..be823d4 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,16 +5,6 @@ use ExtUtils::MakeMaker; my $rpmtools_version = "5.2.0"; -# to generate the ChangeLog depending on the checkout layout -my $commonusername = "../common/"; --d $commonusername or do { - $commonusername = "../../common/"; - -d $commonusername or do { - $commonusername = "../../../common/"; - -d $commonusername or $commonusername = ""; - }; -}; - sub MY::postamble { <<MAKEMAKEFILE; .PHONY: ChangeLog @@ -32,7 +22,7 @@ cleanc: rm -rf *.cz test ChangeLog: - LC_ALL=C svn2cl --accum --strip-prefix=soft/rpm/rpmtools/trunk --authors ${commonusername}username.xml + LC_ALL=C svn2cl --accum --strip-prefix=soft/rpm/rpmtools/trunk rm -f *.bak MAKEMAKEFILE |