diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-06-26 05:19:48 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:18:50 -0500 |
commit | 25f8fac09149c9e18ed106ca5b0e4c5eacb42e88 (patch) | |
tree | 70fbe12bfe90cc019d087f6dd2f41b4c2df6af41 | |
parent | 864de2a4ab9ed2cf2f8850516a021973941af87a (diff) | |
download | samba-25f8fac09149c9e18ed106ca5b0e4c5eacb42e88.tar.gz samba-25f8fac09149c9e18ed106ca5b0e4c5eacb42e88.tar.bz2 samba-25f8fac09149c9e18ed106ca5b0e4c5eacb42e88.zip |
r7923: removed dependence on Data::Dumper
please use util::MyDumper() rather than adding this back in
(This used to be commit 155da538f91c28e845a60065f19b042bf8c167ff)
-rw-r--r-- | source4/build/pidl/swig.pm | 4 | ||||
-rw-r--r-- | source4/build/pidl/validator.pm | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/source4/build/pidl/swig.pm b/source4/build/pidl/swig.pm index 651794349a..c4b6782903 100644 --- a/source4/build/pidl/swig.pm +++ b/source4/build/pidl/swig.pm @@ -7,10 +7,6 @@ package IdlSwig; use strict; -# Some build farm machines don't have the Data::Dumper module installed - -eval("use Data::Dumper"); - sub pidl($) { print OUT shift; diff --git a/source4/build/pidl/validator.pm b/source4/build/pidl/validator.pm index 07420eac83..fbf7993b20 100644 --- a/source4/build/pidl/validator.pm +++ b/source4/build/pidl/validator.pm @@ -4,7 +4,6 @@ # released under the GNU GPL package IdlValidator; -use Data::Dumper; use strict; |