Skip to content

Commit

Permalink
collect and print broken langs
Browse files Browse the repository at this point in the history
  • Loading branch information
flammie committed Dec 19, 2024
1 parent 6f9536f commit 5a3b8ba
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion devtools/make-checker.bash
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ for f in lang-* ; do
./configure "$@" || exit 1
if ! make ; then
echo this needs to be fixed later...
echo "$f" >> broken-makes
echo "$f" >> ../broken-makes
popd || exit 1
continue
fi
Expand All @@ -33,3 +33,7 @@ for f in lang-* ; do
done
popd || exit 1
done
if test -s broken-makes ; then
echo these need to be fixed:
cat broken-makes
fi

0 comments on commit 5a3b8ba

Please sign in to comment.