summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xMaster/tlpkg/bin/tl-update-auto4
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