diff options
author | Tim Potter <tpot@samba.org> | 2004-08-14 01:26:11 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:57:59 -0500 |
commit | b9bc12619d87b416555d31898be0fe22f7c58cf0 (patch) | |
tree | b43a9d10e6ff1e283cff091f9fa676f7e2aab4ec /source4/build | |
parent | 6706ba5bb449f28c477410a8b4b827a68b0ee8c2 (diff) | |
download | samba-b9bc12619d87b416555d31898be0fe22f7c58cf0.tar.gz samba-b9bc12619d87b416555d31898be0fe22f7c58cf0.tar.bz2 samba-b9bc12619d87b416555d31898be0fe22f7c58cf0.zip |
r1815: Update parser for recent changes to perl parser.
(This used to be commit 1d0bde1c77f511a3de5815c2d0e5319c74daf18a)
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/pidl/eparser.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/build/pidl/eparser.pm b/source4/build/pidl/eparser.pm index 1223c0ca77..4030b3d731 100644 --- a/source4/build/pidl/eparser.pm +++ b/source4/build/pidl/eparser.pm @@ -986,9 +986,8 @@ sub Parse($$) foreach my $x (@{$idl}) { - ($x->{TYPE} eq "MODULEHEADER") && ModuleHeader($x); - if ($x->{TYPE} eq "INTERFACE") { + ModuleHeader($x); $module = $x->{NAME}; BuildNeeded($x); } |