diff options
author | Pekka Paalanen <pekka.paalanen@collabora.co.uk> | 2014-08-20 12:08:37 +0300 |
---|---|---|
committer | Pekka Paalanen <pekka.paalanen@collabora.co.uk> | 2014-08-22 16:08:12 +0300 |
commit | 751111811814e7f653f119f88e03494987a44ba6 (patch) | |
tree | 0035b04f692b050104966c80cf7f0df22551caa2 | |
parent | 71182aed843c2927a695c3686d6f7023e44cc0bb (diff) | |
download | weston-751111811814e7f653f119f88e03494987a44ba6.tar.gz |
build: use AM_DISTCHECK_CONFIGURE_FLAGS
According to
http://www.gnu.org/software/automake/manual/html_node/Checking-the-Distribution.html
the DISTCHECK_CONFIGURE_FLAGS is for the user, while
AM_DISTCHECK_CONFIGURE_FLAGS is the one to use in Makefile.am.
Make it so.
Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
Reviewed-by: Boyan Ding <stu_dby@126.com>
Reviewed-by: Marek Chalupa <mchqwerty@gmail.com>
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 39af03ff..a8ca3ba3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,7 +8,7 @@ module_LTLIBRARIES = noinst_LTLIBRARIES = BUILT_SOURCES = -DISTCHECK_CONFIGURE_FLAGS = --disable-setuid-install +AM_DISTCHECK_CONFIGURE_FLAGS = --disable-setuid-install EXTRA_DIST = weston.ini.in |