mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-07 11:56:51 +00:00
Need double quotes instead of single quotes around variable name.
This commit is contained in:
parent
67a58274ca
commit
519f86106d
@ -11,7 +11,7 @@ use POSIX qw(sys_wait_h strftime);
|
||||
use Cwd;
|
||||
use File::Basename; # for basename();
|
||||
|
||||
$::Version = '$Revision: 1.63 $ ';
|
||||
$::Version = '$Revision: 1.64 $ ';
|
||||
|
||||
sub PrintUsage {
|
||||
die <<END_USAGE
|
||||
@ -156,7 +156,7 @@ sub BuildIt {
|
||||
chdir $Settings::DirName or die "Couldn't enter $Settings::DirName";
|
||||
|
||||
my $build_dir = getcwd();
|
||||
my $binary_basename = '$Settings::BinaryName';
|
||||
my $binary_basename = "$Settings::BinaryName";
|
||||
my $binary_dir = "$build_dir/$Settings::Topsrcdir/dist/bin";
|
||||
my $full_binary_name = "$binary_dir/$binary_basename";
|
||||
my $exit_early = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user