diff options
author | Karl Berry <karl@freefriends.org> | 2009-09-20 23:29:12 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-09-20 23:29:12 +0000 |
commit | b209fd55656d0a2b7714c317d2a6656af4b1505e (patch) | |
tree | a547f76aac97c9a0bde71608a926c00fa2e11c89 | |
parent | a51cefdd5a15da843d59c06b801969ac97f1a7d1 (diff) |
do not try to commit in the non-svn dir asymptote/gc-*.
git-svn-id: svn://tug.org/texlive/trunk@15386 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/tlpkg/bin/tl-update-auto | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/tl-update-auto b/Master/tlpkg/bin/tl-update-auto index 18c1812d081..d55b1e509ff 100755 --- a/Master/tlpkg/bin/tl-update-auto +++ b/Master/tlpkg/bin/tl-update-auto @@ -131,7 +131,9 @@ for gnuconf in config.guess config.sub depcomp install-sh missing \ rm -f $temp else # updated needed. find all copies in source. - alldev="`find ../Build/source -name $gnuconf`" + # Build/source/utils/asymptote/gc* is not checked in (since it's not + # unpacked in the original release), therefore we cannot commit to it. + alldev="`find ../Build/source -name $gnuconf` | grep -v asymptote/gc" for f in $alldev; do $chicken $cp $master_conffile $f done |