diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2016-11-14 10:05:41 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2016-11-14 10:13:41 +1000 |
commit | dae10bca6778ba919bc384366ebd43179470d36c (patch) | |
tree | b4c76bb71affaf2b15406161635e9f3e6a0431f4 | |
parent | ceb67268118cbeeabb6b6355b9380d12f4fb55e8 (diff) |
configure.ac: move the udev test path up into the test section
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
-rw-r--r-- | configure.ac | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index 5b5b68a4..206a4eda 100644 --- a/configure.ac +++ b/configure.ac @@ -211,6 +211,12 @@ if test "x$build_tests" = "xyes"; then fi fi +# Used by the udev rules so we can use callouts during testing without +# installing everything first. Default is the empty string so the installed +# rule will use udev's default path. Override is in udev/Makefile.am +AC_SUBST(UDEV_TEST_PATH, "") +AC_PATH_PROG(SED, [sed]) + ########################### # enable/disable libwacom # ########################### @@ -249,12 +255,6 @@ AM_CONDITIONAL(BUILD_DOCS, [test "x$build_documentation" = "xyes"]) AM_CONDITIONAL(HAVE_LIBUNWIND, [test "x$HAVE_LIBUNWIND" = xyes]) AM_CONDITIONAL(BUILD_EVENTGUI, [test "x$build_eventgui" = "xyes"]) -# Used by the udev rules so we can use callouts during testing without -# installing everything first. Default is the empty string so the installed -# rule will use udev's default path. Override is in udev/Makefile.am -AC_SUBST(UDEV_TEST_PATH, "") -AC_PATH_PROG(SED, [sed]) - AC_CONFIG_FILES([Makefile doc/Makefile doc/libinput.doxygen |