diff options
author | Karl Berry <karl@freefriends.org> | 2008-07-15 23:35:26 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-07-15 23:35:26 +0000 |
commit | 0552b9653cd2be6ee8ae676efe73423f4320fadc (patch) | |
tree | 57e30cd77bd99643626487fd4db0082fc73f71a1 /Master | |
parent | d223c1a3fc30e88dd6d87c5feaab15c62b37825b (diff) |
(do_install_xetex): use cp -R instead of cp -a,
since -a only exists in GNU cp.
git-svn-id: svn://tug.org/texlive/trunk@9588 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/tlpkg/TeXLive/TLPostActions.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLPostActions.pm b/Master/tlpkg/TeXLive/TLPostActions.pm index 3b4e36d35c8..49342015d7f 100644 --- a/Master/tlpkg/TeXLive/TLPostActions.pm +++ b/Master/tlpkg/TeXLive/TLPostActions.pm @@ -80,7 +80,7 @@ sub do_install_xetex { if (win32()) { push @cpycmd, "xcopy", "/e", "/i", "/q", "/y"; } else { - push @cpycmd, "cp", "-a"; + push @cpycmd, "cp", "-R"; } system(@cpycmd, (win32() ? conv_to_win_path("$texdir/bin/win32/conf") : |