aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2012-05-30 16:58:33 +1200
committerTom Ryder <tom@sanctum.geek.nz>2012-05-30 16:58:33 +1200
commit72582697f7c5555348b83758f08ab84c76ac471f (patch)
tree6a43ea8fa4bcc792d0fa7a6806808989986f70ed
parentInclude all the libnss libraries we can find (diff)
downloadclubber-72582697f7c5555348b83758f08ab84c76ac471f.tar.gz
clubber-72582697f7c5555348b83758f08ab84c76ac471f.zip
Ignore File::Find warnings as per docs
-rwxr-xr-xclubber5
1 files changed, 5 insertions, 0 deletions
diff --git a/clubber b/clubber
index 48bb5f4..0edc090 100755
--- a/clubber
+++ b/clubber
@@ -25,6 +25,11 @@ use File::Find;
use Getopt::Long;
#
+# Ignore stupid and useless messages from File::Find.
+#
+no warnings 'File::Find';
+
+#
# Check ldd is available.
#
chomp(my $ldd = `which ldd`);