Update paths for the meta => meta-python rename.

This commit is contained in:
Dan Gohman
2018-08-01 05:05:33 -07:00
parent 3a550d185f
commit c42bed7452
18 changed files with 40 additions and 39 deletions

View File

@@ -43,13 +43,13 @@ fi
# Check if any Python files have changed since we last checked them.
tsfile="$topdir/target/meta-checked"
if [ -f "$tsfile" ]; then
needcheck=$(find "$topdir/lib/codegen/meta" -name '*.py' -newer "$tsfile")
needcheck=$(find "$topdir/lib/codegen/meta-python" -name '*.py' -newer "$tsfile")
else
needcheck=yes
fi
if [ -n "$needcheck" ]; then
banner "Checking python source files"
"$topdir/lib/codegen/meta/check.sh"
"$topdir/lib/codegen/meta-python/check.sh"
touch "$tsfile" || echo no target directory
fi