diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-05-10 06:53:44 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-05-10 06:53:44 +0000 |
commit | 1127a6ebc53f89545c41be6bec5997aa46a0e05c (patch) | |
tree | 44402eb39c54732a7a2d3e189230eeb7799b0111 | |
parent | f514cbc1348e996959aef4968f7df606dfacb18b (diff) |
sync linked scropts
git-svn-id: svn://tug.org/texlive/trunk@30365 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl | 14 | ||||
-rwxr-xr-x | Build/source/texk/texlive/tl_scripts/fmtutil.sh | 2 |
2 files changed, 8 insertions, 8 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl index 2c7520d56c9..a5931e662b2 100755 --- a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl +++ b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl @@ -1,12 +1,12 @@ #!/usr/bin/env perl -# $Id: tlmgr.pl 30121 2013-04-26 06:51:26Z preining $ +# $Id: tlmgr.pl 30343 2013-05-09 02:11:32Z preining $ # # Copyright 2008-2013 Norbert Preining # This file is licensed under the GNU General Public License version 2 # or any later version. -my $svnrev = '$Revision: 30121 $'; -my $datrev = '$Date: 2013-04-26 08:51:26 +0200 (Fri, 26 Apr 2013) $'; +my $svnrev = '$Revision: 30343 $'; +my $datrev = '$Date: 2013-05-09 04:11:32 +0200 (Thu, 09 May 2013) $'; my $tlmgrrevision; my $prg; if ($svnrev =~ m/: ([0-9]+) /) { @@ -821,7 +821,7 @@ sub handle_execute_actions } if ($localtlpdb->option("create_formats") && !$::regenerate_all_formats) { - $errors += do_cmd_and_check("fmtutil$sysmode --byhyphen $lang"); + $errors += do_cmd_and_check("fmtutil$sysmode --byhyphen \"$lang\""); } } } @@ -4292,7 +4292,7 @@ sub action_generate { debug("$prg: writing language.dat.lua data to $dest\n"); TeXLive::TLUtils::create_language_lua($localtlpdb, $dest, $localcfg); if ($opts{"rebuild-sys"}) { - do_cmd_and_check("fmtutil-sys --byhyphen $dest"); + do_cmd_and_check("fmtutil-sys --byhyphen \"$dest\""); } else { info("To make the newly-generated language.dat take effect," . " run fmtutil-sys --byhyphen $dest.\n"); @@ -4307,7 +4307,7 @@ sub action_generate { debug ("$prg: writing language.dat data to $dest\n"); TeXLive::TLUtils::create_language_dat($localtlpdb, $dest, $localcfg); if ($opts{"rebuild-sys"}) { - do_cmd_and_check("fmtutil-sys --byhyphen $dest"); + do_cmd_and_check("fmtutil-sys --byhyphen \"$dest\""); } else { info("To make the newly-generated language.dat take effect," . " run fmtutil-sys --byhyphen $dest.\n"); @@ -4322,7 +4322,7 @@ sub action_generate { debug("$prg: writing language.def data to $dest\n"); TeXLive::TLUtils::create_language_def($localtlpdb, $dest, $localcfg); if ($opts{"rebuild-sys"}) { - do_cmd_and_check("fmtutil-sys --byhyphen $dest"); + do_cmd_and_check("fmtutil-sys --byhyphen \"$dest\""); } else { info("To make the newly-generated language.def take effect," . " run fmtutil-sys --byhyphen $dest.\n"); diff --git a/Build/source/texk/texlive/tl_scripts/fmtutil.sh b/Build/source/texk/texlive/tl_scripts/fmtutil.sh index b9f97aa8998..f3609805be5 100755 --- a/Build/source/texk/texlive/tl_scripts/fmtutil.sh +++ b/Build/source/texk/texlive/tl_scripts/fmtutil.sh @@ -930,7 +930,7 @@ recreate_by_hyphenfile() ;; esac need_find_hyphenfile=true - match_cmd="echo \"\$this_hyphenfile\" | grep $hyphenfile >/dev/null" + match_cmd="echo \"\$this_hyphenfile\" | grep \"$hyphenfile\" >/dev/null" # No match before the loop: setmatch false |