1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

Avoid use of removed variable.

(This used to be commit 10f0b5f83f)
This commit is contained in:
Jelmer Vernooij 2008-02-29 13:58:20 +01:00
parent 2219d434ed
commit eff6a8c256

View File

@ -291,13 +291,11 @@ sub Binary($$)
{
my ($self,$ctx) = @_;
my $extradir = "";
unless (defined($ctx->{INSTALLDIR})) {
} elsif ($ctx->{INSTALLDIR} eq "SBINDIR") {
$self->output("SBIN_PROGS += $installdir/$ctx->{BINARY}\n");
$self->output("SBIN_PROGS += bin/$ctx->{BINARY}\n");
} elsif ($ctx->{INSTALLDIR} eq "BINDIR") {
$self->output("BIN_PROGS += $installdir/$ctx->{BINARY}\n");
$self->output("BIN_PROGS += bin/$ctx->{BINARY}\n");
}
$self->output("binaries:: $ctx->{TARGET_BINARY}\n");