From 7a7e271e0cd5556598645014db6c600ddb18c407 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 14 Jul 2005 13:44:54 +0000 Subject: r8471: --ejs taking an optional arguments interferes with the pidl extra args (This used to be commit a9d05af0fd802cf0cbe1298c3c988dcd2eb1b848) --- source4/build/pidl/pidl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/build') diff --git a/source4/build/pidl/pidl b/source4/build/pidl/pidl index ae46b4c746..9cf1e2f6d3 100755 --- a/source4/build/pidl/pidl +++ b/source4/build/pidl/pidl @@ -105,7 +105,7 @@ GetOptions ( 'client:s' => \$opt_client, 'eth-parser:s' => \$opt_eth_parser, 'eth-header:s' => \$opt_eth_header, - 'ejs:s' => \$opt_ejs, + 'ejs' => \$opt_ejs, 'diff' => \$opt_diff, 'odl' => \$opt_odl, 'keep:s' => \$opt_keep, @@ -253,10 +253,10 @@ sub process_file($) if (defined($opt_ejs)) { require Parse::Pidl::Samba::EJS; require Parse::Pidl::Samba::EJSHeader; - my $ejs = ($opt_ejs or Parse::Pidl::Util::ChangeExtension($output, "_ejs.c")); + my $ejs = Parse::Pidl::Util::ChangeExtension($output, "_ejs.c"); Parse::Pidl::Util::FileSave($ejs, Parse::Pidl::Samba::EJS::Parse($ndr, $h_filename)); - $ejs = ($opt_ejs or Parse::Pidl::Util::ChangeExtension($output, "_ejs.h")); + $ejs = Parse::Pidl::Util::ChangeExtension($output, "_ejs.h"); Parse::Pidl::Util::FileSave($ejs, Parse::Pidl::Samba::EJSHeader::Parse($ndr)); } -- cgit