Remove unneeded global variable.

GIT_SILENT
I managed to refactor build_list away from being global awhile ago.
wilder
Michael Pyne 15 years ago
parent 5175b5c38b
commit c42b93098f
  1. 7
      kdesrc-build

@ -144,11 +144,6 @@ our %ENV_VARS;
# This is a hash since Perl doesn't have a "in" keyword.
my %ignore_list; # List of packages to refuse to include in the build list.
# update and build are lists since they support an ordering, which can't be
# guaranteed using a hash unless I want a custom sort function (which isn't
# necessarily a horrible way to go, I just chose to do it this way.
my @build_list; # List of modules to build.
# Each module in the above list is of the form:
# {
# name => 'user-set-name',
@ -7283,7 +7278,7 @@ eval
my $result;
my @update_list = map { $_->name() } ($ctx->modulesInPhase('update'));
@build_list = map { $_->name() } ($ctx->modulesInPhase('build'));
my @build_list = map { $_->name() } ($ctx->modulesInPhase('build'));
debug "Update list is ", join (', ', @update_list);
debug "Build list is ", join (', ', @build_list);

Loading…
Cancel
Save