From d15598e9446fc2d6a33c6c622ff9ca5453e7d106 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 11 Sep 2008 16:23:14 -0400 Subject: [PATCH] Fix pkg generation to not include /prototype in all packages. (Kim Bisgaard) --- Alien/Package/Pkg.pm | 2 +- debian/changelog | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Alien/Package/Pkg.pm b/Alien/Package/Pkg.pm index b718aaf..4ad612f 100644 --- a/Alien/Package/Pkg.pm +++ b/Alien/Package/Pkg.pm @@ -262,7 +262,7 @@ sub prep { # grep {/^\./} readdir DIR; # closedir DIR; - $this->do("cd $dir; find . -print | pkgproto > ./prototype") + $this->do("cd $dir; find . -print | sed -e '/.\\/prototype\$/d' | pkgproto > ./prototype") || die "error during pkgproto: $!\n"; open(PKGPROTO, ">>$dir/prototype") diff --git a/debian/changelog b/debian/changelog index 902a152..23e6ce4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +alien (8.73) UNRELEASED; urgency=low + + * Fix pkg generation to not include /prototype in all packages. + (Kim Bisgaard) + + -- Joey Hess Thu, 11 Sep 2008 16:22:28 -0400 + alien (8.72) unstable; urgency=low * Use debhelper 7, rules file minimisation.