summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordormando <dormando@rydia.net>2012-07-29 22:21:05 -0700
committerdormando <dormando@rydia.net>2012-07-29 22:21:05 -0700
commit67c90606ee65b0e4606a4a76ace2f56d618220f6 (patch)
tree02c272d423e2f15e17bfa7bcb5d5e044c41a400f
parent2ac661d8d5c09141fba652a45d726a807ec04c6e (diff)
downloadmemcached-67c90606ee65b0e4606a4a76ace2f56d618220f6.tar.gz
whitespace fix for freebsd
I dunno why it litters .orgs then tries to run them. I'm not a magician.
-rwxr-xr-xdevtools/clean-whitespace.pl2
-rwxr-xr-xt/whitespace.t1
2 files changed, 2 insertions, 1 deletions
diff --git a/devtools/clean-whitespace.pl b/devtools/clean-whitespace.pl
index 95481ef..fe05806 100755
--- a/devtools/clean-whitespace.pl
+++ b/devtools/clean-whitespace.pl
@@ -3,7 +3,7 @@ use strict;
use FindBin qw($Bin);
chdir "$Bin/.." or die;
-my @exempted = qw(Makefile.am ChangeLog doc/Makefile.am);
+my @exempted = qw(Makefile.am ChangeLog doc/Makefile.am README README.md);
push(@exempted, glob("doc/*.xml"));
push(@exempted, glob("doc/xml2rfc/*.xsl"));
push(@exempted, glob("m4/*backport*m4"));
diff --git a/t/whitespace.t b/t/whitespace.t
index 50b5ae6..7d5d916 100755
--- a/t/whitespace.t
+++ b/t/whitespace.t
@@ -10,6 +10,7 @@ BEGIN {
push(@exempted, glob("doc/*.xml"));
push(@exempted, glob("doc/xml2rfc/*.xsl"));
push(@exempted, glob("m4/*backport*m4"));
+ push(@exempted, glob("*.orig"));
my %exempted_hash = map { $_ => 1 } @exempted;
my @stuff = split /\0/, `git ls-files -z -c -m -o --exclude-standard`;