From f72dd2827dd77e9daf64c8b4baf207a4c3939ab1 Mon Sep 17 00:00:00 2001 From: stevenpritchard Date: Fri, 25 May 2007 00:54:59 +0000 Subject: [PATCH] Exclude config.guess, config.sub, and install.sh (usually seen near configure.) --- Changes | 2 ++ cpanspec | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index bf059e1..042eae4 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,8 @@ * It's 2007 now, so update the copyright. * Handle .bz2 files. +* Exclude config.guess, config.sub, and install.sh (usually seen near + configure.) 1.70 2007-03-12 diff --git a/cpanspec b/cpanspec index 61277e6..2ccc340 100755 --- a/cpanspec +++ b/cpanspec @@ -10,7 +10,7 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # -# $Id: cpanspec,v 1.47 2007/03/16 18:16:02 stevenpritchard Exp $ +# $Id: cpanspec,v 1.48 2007/05/25 00:54:59 stevenpritchard Exp $ our $NAME="cpanspec"; our $VERSION='1.71'; @@ -705,6 +705,8 @@ for my $file (@args) { and $_ ne "META.yml" and $_ ne "NINJA" and $_ ne "configure" + and $_ ne "config.guess" + and $_ ne "config.sub" and $_ ne "typemap" and $_ ne "$name-$version" and $_ ne "bin" @@ -713,6 +715,7 @@ for my $file (@args) { and $_ ne "inc" and $_ ne "autobuild.sh" and $_ ne "pm_to_blib" + and $_ ne "install.sh" } @files; my $date=strftime("%a %b %d %Y", localtime);