summaryrefslogtreecommitdiff
path: root/source4/script/buildtree.pl
diff options
context:
space:
mode:
authorJames Peach <jpeach@samba.org>2007-04-02 17:17:40 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:49:43 -0500
commit051e4b25cf2bfedfca9355e43eacede966dbf257 (patch)
treeed5deeb4cf7ebfcb1f310beb844d9e6ba3013511 /source4/script/buildtree.pl
parent3d0bc0ec0ae98e58e9b3cf98cdf32a4873dcafaa (diff)
downloadsamba-051e4b25cf2bfedfca9355e43eacede966dbf257.tar.gz
samba-051e4b25cf2bfedfca9355e43eacede966dbf257.tar.bz2
samba-051e4b25cf2bfedfca9355e43eacede966dbf257.zip
r22034: Use builddir and srcdir instead on samba_builddir and samba_srcdir.
(This used to be commit 8b19b8bfbed3e25d1c4e94d1cf3def4f878f8acf)
Diffstat (limited to 'source4/script/buildtree.pl')
-rwxr-xr-xsource4/script/buildtree.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/script/buildtree.pl b/source4/script/buildtree.pl
index be5170e7d1..a40036aa55 100755
--- a/source4/script/buildtree.pl
+++ b/source4/script/buildtree.pl
@@ -15,8 +15,8 @@ use vars qw/*name *dir *prune/;
*name = *File::Find::name;
*dir = *File::Find::dir;
*prune = *File::Find::prune;
-my $builddir = abs_path($ENV{samba_builddir});
-my $srcdir = abs_path($ENV{samba_srcdir});
+my $builddir = abs_path($ENV{builddir});
+my $srcdir = abs_path($ENV{srcdir});
sub wanted;