summaryrefslogtreecommitdiff
path: root/source4/build/smb_build/main.pl
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-10-28 23:28:37 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:45:30 -0500
commitfc6bdfa8be1d47f4a699efc70e7129ae7168adbd (patch)
tree758dce40d6a4506cd28168b9efb8ab8beb5446e9 /source4/build/smb_build/main.pl
parent3f2136b9190fe8035ebba7514ad136f390081c1f (diff)
downloadsamba-fc6bdfa8be1d47f4a699efc70e7129ae7168adbd.tar.gz
samba-fc6bdfa8be1d47f4a699efc70e7129ae7168adbd.tar.bz2
samba-fc6bdfa8be1d47f4a699efc70e7129ae7168adbd.zip
r11388: Move dot-generating to a seperate perl executable
(This used to be commit 31406f7aa540efc4c11e7546a12fdeee80e8db6c)
Diffstat (limited to 'source4/build/smb_build/main.pl')
-rw-r--r--source4/build/smb_build/main.pl5
1 files changed, 0 insertions, 5 deletions
diff --git a/source4/build/smb_build/main.pl b/source4/build/smb_build/main.pl
index 1bc4d45aaa..4c42c7a7c1 100644
--- a/source4/build/smb_build/main.pl
+++ b/source4/build/smb_build/main.pl
@@ -12,7 +12,6 @@ use smb_build::smb_build_h;
use smb_build::input;
use smb_build::config_mk;
use smb_build::output;
-use smb_build::dot;
use smb_build::env;
use config;
use strict;
@@ -72,8 +71,4 @@ $mkenv->ProtoHeader($OUTPUT->{ALL_OBJS});
$mkenv->write("Makefile");
smb_build_h::create_smb_build_h($OUTPUT, "include/smb_build.h");
-open DOTTY, ">samba4-deps.dot";
-print DOTTY dot::generate($DEPEND);
-close DOTTY;
-
1;