summaryrefslogtreecommitdiff
path: root/contrib/new-theory
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/new-theory')
-rwxr-xr-xcontrib/new-theory7
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/new-theory b/contrib/new-theory
index b349e78b0..9e4e92a71 100755
--- a/contrib/new-theory
+++ b/contrib/new-theory
@@ -16,6 +16,13 @@ if [ ! -e src/theory/theory_engine.h ]; then
exit 1
fi
+# Trailing whitespaces in src/Makefile.am mess with the regexps (and are
+# generally undesirable, so we throw an error instead of ignoring them).
+if grep -q '[[:blank:]]$' src/Makefile.am; then
+ echo "ERROR: trailing whitespaces in src/Makefile.am" >&2
+ exit 1
+fi
+
if [ $# -ge 1 -a "$1" = --alternate ]; then
shift
alternate=true
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback