parameter.pm (b274bc22) | parameter.pm (01a01bd6) |
---|---|
1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 604 unchanged lines hidden (view full) --- 613 if ( $installer::globals::tab ) { push(@output, "TAB version\n"); } 614 if ( $installer::globals::strip ) { push(@output, "Stripping files\n"); } 615 else { push(@output, "No file stripping\n"); } 616 if ( $installer::globals::debian ) { push(@output, "Linux: Creating Debian packages\n"); } 617 if ( $installer::globals::dounzip ) { push(@output, "Unzip ARCHIVE files\n"); } 618 else { push(@output, "Not unzipping ARCHIVE files\n"); } 619 if (!($installer::globals::languages_defined_in_productlist)) 620 { | 1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 604 unchanged lines hidden (view full) --- 613 if ( $installer::globals::tab ) { push(@output, "TAB version\n"); } 614 if ( $installer::globals::strip ) { push(@output, "Stripping files\n"); } 615 else { push(@output, "No file stripping\n"); } 616 if ( $installer::globals::debian ) { push(@output, "Linux: Creating Debian packages\n"); } 617 if ( $installer::globals::dounzip ) { push(@output, "Unzip ARCHIVE files\n"); } 618 else { push(@output, "Not unzipping ARCHIVE files\n"); } 619 if (!($installer::globals::languages_defined_in_productlist)) 620 { |
621 push(@output, "Languages:\n"); 622 foreach my $element (@installer::globals::languageproducts) { push(@output, "\t$element\n"); } | 621 push(@output, sprintf("Languages: %s\n", $installer::globals::languageproduct)); |
623 } 624 else 625 { 626 push(@output, "Languages defined in $installer::globals::ziplistname\n"); 627 } 628 if ( $installer::globals::is_copy_only_project ) { push(@output, "This is a copy only project!\n"); } 629 if ( $installer::globals::languagepack ) { push(@output, "Creating language pack!\n"); } 630 if ( $installer::globals::patch ) { push(@output, "Creating patch!\n"); } --- 12 unchanged lines hidden --- | 622 } 623 else 624 { 625 push(@output, "Languages defined in $installer::globals::ziplistname\n"); 626 } 627 if ( $installer::globals::is_copy_only_project ) { push(@output, "This is a copy only project!\n"); } 628 if ( $installer::globals::languagepack ) { push(@output, "Creating language pack!\n"); } 629 if ( $installer::globals::patch ) { push(@output, "Creating patch!\n"); } --- 12 unchanged lines hidden --- |