diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2013-10-23 14:56:04 +1000 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2013-10-25 10:58:06 -0700 |
commit | 05f95c85c8cad07bee233f1d4e205a12538365e1 (patch) | |
tree | e033ce57304caf8b9819533e0c68c38f2bd109df /Makefile.am | |
parent | 16b2dab4e48462102d9990520562b0a9de2f9812 (diff) |
protocol: validate the protocol against a dtd
The scanner is not very forgiving if the protocol doesn't match it's
expectations and crashes without much of a notice. Thus, validate the protocol
against a DTD.
Move the protocol subdir forward so we validate first before trying anything
else, and install the DTD so we can validate weston's protocols as well.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index ddf39d1..99607b0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,7 +2,7 @@ if BUILD_DOCS doc_subdir = doc endif -SUBDIRS = src protocol $(doc_subdir) tests cursor +SUBDIRS = protocol src $(doc_subdir) tests cursor ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} |