diff options
author | David Tardon <dtardon@redhat.com> | 2013-06-20 09:23:56 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-06-20 09:24:24 +0200 |
commit | 4379180aaa6b65e172d366fbf64cbe3cea6d5435 (patch) | |
tree | c4e8be073fcf85e958f9659cdfde6dd01135e0de /solenv/bin/modules | |
parent | 597178ceecf30009c3f9098d78ab165d97b6b1f8 (diff) |
quote $ for files from filelists too
Change-Id: Ice814ea226ddac24325770d038e019e19bc635ce
Diffstat (limited to 'solenv/bin/modules')
-rw-r--r-- | solenv/bin/modules/installer.pm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/solenv/bin/modules/installer.pm b/solenv/bin/modules/installer.pm index 6ae5b57840a9..24030ffc281b 100644 --- a/solenv/bin/modules/installer.pm +++ b/solenv/bin/modules/installer.pm @@ -609,13 +609,6 @@ sub run { $filesinproductlanguageresolvedarrayref = installer::archivefiles::resolving_archive_flag($filesinproductlanguageresolvedarrayref, \@additional_paths_from_zipfiles, $languagestringref, $loggingdir); - # packed files sometimes contain a "$" in their name: HighlightText$1.class. For epm the "$" has to be quoted by "$$" - - if (!( $installer::globals::iswindowsbuild || $installer::globals::simple ) ) - { - installer::scriptitems::quoting_illegal_filenames($filesinproductlanguageresolvedarrayref); - } - ###################################################################################### # Processing files with flag FILELIST and putting listed files into the file list ###################################################################################### @@ -624,6 +617,13 @@ sub run { $filesinproductlanguageresolvedarrayref = installer::filelists::resolve_filelist_flag($filesinproductlanguageresolvedarrayref, $ENV{'INSTDIR'}); + # packed files sometimes contain a "$" in their name: HighlightText$1.class. For epm the "$" has to be quoted by "$$" + + if (!( $installer::globals::iswindowsbuild || $installer::globals::simple ) ) + { + installer::scriptitems::quoting_illegal_filenames($filesinproductlanguageresolvedarrayref); + } + ##################################### # Files with flag SUBST_FILENAME ##################################### |