提交 a33e46cf 编写于 作者: B Behdad Esfahbod

[test/shaping] Add hb-update-manifests

上级 d4de562a
# Process this file with automake to produce Makefile.in # Process this file with automake to produce Makefile.in
manifests: manifests:
@find "$(srcdir)/texts" -type d | while read d; do \ @$(srcdir)/hb-update-manifests "$(srcdir)/texts" "$(srcdir)/fonts"
echo " GEN $$d/MANIFEST"; \
(cd "$$d" && ls | grep -v MANIFEST | LANG=C sort > MANIFEST.tmp && mv MANIFEST.tmp MANIFEST || ($(RM) MANIFEST.tmp; false)); \
done; true
.PHONY: manifests .PHONY: manifests
-include $(top_srcdir)/git.mk -include $(top_srcdir)/git.mk
#!/bin/sh
if test $# = 0; then
echo "Usage: $0 DIR..."
exit 1
fi
find "$@" -type d |
while read d; do
echo " GEN $d/MANIFEST";
(
cd "$d" &&
ls |
grep -v "MANIFEST\|README\|LICENSE\|COPYING\|SOURCE" |
LANG=C sort > MANIFEST.tmp &&
mv MANIFEST.tmp MANIFEST ||
(
rm -f MANIFEST.tmp
false
)
)
done
lang
script-assamese script-assamese
script-bengali script-bengali
script-devanagari script-devanagari
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册