summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVille Skytt? <ville.skytta@iki.fi>2010-06-29 21:42:45 +0300
committerVille Skytt? <ville.skytta@iki.fi>2010-06-29 21:42:45 +0300
commit4a3190abf2d9eb30db2fe312455e24e1b5130a8d (patch)
treef9d9a41f50d19e6bc0fb24f161766c84542c7289
parent215bd1f8d14e6aaf55903bf33fbd26845c8f7028 (diff)
downloadmarkup-validator-4a3190abf2d9eb30db2fe312455e24e1b5130a8d.zip
markup-validator-4a3190abf2d9eb30db2fe312455e24e1b5130a8d.tar.gz
markup-validator-4a3190abf2d9eb30db2fe312455e24e1b5130a8d.tar.bz2
Add "reminder" check for version in various files in "make dist".
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 273fb45..8d48512 100644
--- a/Makefile
+++ b/Makefile
@@ -30,4 +30,10 @@ perltidy:
done
dist: all
+ @for file in htdocs/footer.html htdocs/whatsnew.html \
+ httpd/cgi-bin/check share/templates/*/footer.tmpl ; do \
+ grep -qF "$(VERSION)" $$file || { \
+ echo "Validator version in $$file seems out of date." ; \
+ exit 1 ; } ; \
+ done
misc/mkrelease.sh $(VERSION)