diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-09-08 10:35:55 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:37:50 -0500 |
commit | c070fd62228a4fb0af0d275edc3d141e44dff389 (patch) | |
tree | a3e7880864609930dcca90f75fa9c17a225f192c /source4/pidl | |
parent | 6a74a831510674f25c582b60bfb763489e0b538d (diff) | |
download | samba-c070fd62228a4fb0af0d275edc3d141e44dff389.tar.gz samba-c070fd62228a4fb0af0d275edc3d141e44dff389.tar.xz samba-c070fd62228a4fb0af0d275edc3d141e44dff389.zip |
r10074: Pass CPP to pidl via environment variables rather then config.pm. This fixes the
standalone pidl build (as used for ethereal)
(This used to be commit 9c9ebd2214423c58357854f09bd744e13e807d8f)
Diffstat (limited to 'source4/pidl')
-rw-r--r-- | source4/pidl/idl.yp | 3 | ||||
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/IDL.pm | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/source4/pidl/idl.yp b/source4/pidl/idl.yp index 0f5b17e0fa0..ce8100722b4 100644 --- a/source4/pidl/idl.yp +++ b/source4/pidl/idl.yp @@ -319,7 +319,6 @@ optional_semicolon: # start code %% -use config qw(%config); use Parse::Pidl::Util; ##################################################################### @@ -423,7 +422,7 @@ sub parse_idl($$) undef $/; my $cpp = $ENV{CPP}; if (! defined $cpp) { - $cpp = $config::config{'CPP'}; + $cpp = "CPP"; } my $data = `$cpp -D__PIDL__ -xc $filename`; $/ = $saved_delim; diff --git a/source4/pidl/lib/Parse/Pidl/IDL.pm b/source4/pidl/lib/Parse/Pidl/IDL.pm index 2e73bd8410d..dd667cb9eb0 100644 --- a/source4/pidl/lib/Parse/Pidl/IDL.pm +++ b/source4/pidl/lib/Parse/Pidl/IDL.pm @@ -2672,7 +2672,6 @@ sub #line 320 "pidl/idl.yp" -use config qw(%config); use Parse::Pidl::Util; ##################################################################### @@ -2776,7 +2775,7 @@ sub parse_idl($$) undef $/; my $cpp = $ENV{CPP}; if (! defined $cpp) { - $cpp = $config::config{'CPP'}; + $cpp = "CPP"; } my $data = `$cpp -D__PIDL__ -xc $filename`; $/ = $saved_delim; |