summaryrefslogtreecommitdiff
path: root/source4/script
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2004-01-02 13:47:13 +0000
committerJelmer Vernooij <jelmer@samba.org>2004-01-02 13:47:13 +0000
commit0172920e16a3af1711dbe2641027d1a0f9dffbe5 (patch)
tree36da8f72a4b12996eb251b89a8069557ac9ab548 /source4/script
parent7db3bbc0482789efd68cd043459a1822a439f4da (diff)
downloadsamba-0172920e16a3af1711dbe2641027d1a0f9dffbe5.tar.gz
samba-0172920e16a3af1711dbe2641027d1a0f9dffbe5.tar.bz2
samba-0172920e16a3af1711dbe2641027d1a0f9dffbe5.zip
Add note about new configure structure.
(This used to be commit 43130f370b84828fce3eb5501464eb2c47138acc)
Diffstat (limited to 'source4/script')
-rwxr-xr-xsource4/script/find_unused_header_checks.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/script/find_unused_header_checks.pl b/source4/script/find_unused_header_checks.pl
index 3caf9da453..8251198aab 100755
--- a/source4/script/find_unused_header_checks.pl
+++ b/source4/script/find_unused_header_checks.pl
@@ -8,6 +8,8 @@
#
# You might want to specify configure.in again in the list of header files
# as well, because it also uses some includes.
+# Note that this script does not process any includes, so you might
+# have to run "cat configure.in */config.m4 > foo.in" first.
my %symbols;
@@ -30,7 +32,7 @@ while(<IN>) {
if(/AC_CHECK_HEADERS\(([\[]*)(.*)([\]]*)\)/) {
@hs = split / /, $2;
foreach(@hs) {
- if($symbols{$_} != 1) { print "|$_|\n"; }
+ if($symbols{$_} != 1) { print "$_\n"; }
}
}
}