build.pl (6086b28a) | build.pl (3e9d7d56) |
---|---|
1: 2 eval 'exec perl -S $0 ${1+"$@"}' 3 if 0; 4#************************************************************** 5# 6# Licensed to the Apache Software Foundation (ASF) under one 7# or more contributor license agreements. See the NOTICE file 8# distributed with this work for additional information --- 214 unchanged lines hidden (view full) --- 223 $deliver_env{'OUTPATH'}++; 224 $deliver_env{'L10N_framework'}++; 225 }; 226 my $workspace_path = get_workspace_path(); # This also sets $initial_module 227 my @additional_repositories = (); 228 229 # Collect additional repository directories from the ADDITIONAL_REPOSITORIES 230 # environment variable (typically set by configure). | 1: 2 eval 'exec perl -S $0 ${1+"$@"}' 3 if 0; 4#************************************************************** 5# 6# Licensed to the Apache Software Foundation (ASF) under one 7# or more contributor license agreements. See the NOTICE file 8# distributed with this work for additional information --- 214 unchanged lines hidden (view full) --- 223 $deliver_env{'OUTPATH'}++; 224 $deliver_env{'L10N_framework'}++; 225 }; 226 my $workspace_path = get_workspace_path(); # This also sets $initial_module 227 my @additional_repositories = (); 228 229 # Collect additional repository directories from the ADDITIONAL_REPOSITORIES 230 # environment variable (typically set by configure). |
231 foreach my $additional_repository (split(";", $ENV{ADDITIONAL_REPOSITORIES})) | 231 foreach my $additional_repository (split(" ", $ENV{ADDITIONAL_REPOSITORIES})) |
232 { 233 next if $additional_repository eq ""; 234 # The repository path is expected to be relative to the workspace_path. 235 # For support of absolute paths we need functionality to distinguish between 236 # relative and absolute paths (provided by File::Spec). 237 my $path = Cwd::realpath(correct_path($workspace_path . "/" . $additional_repository)); 238 if ( -d $path) 239 { --- 3320 unchanged lines hidden --- | 232 { 233 next if $additional_repository eq ""; 234 # The repository path is expected to be relative to the workspace_path. 235 # For support of absolute paths we need functionality to distinguish between 236 # relative and absolute paths (provided by File::Spec). 237 my $path = Cwd::realpath(correct_path($workspace_path . "/" . $additional_repository)); 238 if ( -d $path) 239 { --- 3320 unchanged lines hidden --- |