Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix noisy Configure.pl on JVM backend.
was complaining with:
Use of uninitialized value {sysroot} in concatenation (.) or string at Configure.pl line 229.
  • Loading branch information
Donald Hunter committed Nov 12, 2015
1 parent 25f032a commit d510899
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Configure.pl
Expand Up @@ -124,8 +124,8 @@
}

$config{prefix} = $prefix;
$config{sdkroot} = $options{sdkroot};
$config{sysroot} = $options{sysroot};
$config{sdkroot} = $options{sdkroot} || '';
$config{sysroot} = $options{sysroot} || '';
$config{slash} = $slash;
$config{'makefile-timing'} = $options{'makefile-timing'};
$config{'stagestats'} = '--stagestats' if $options{'makefile-timing'};
Expand Down

0 comments on commit d510899

Please sign in to comment.