diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2012-11-23 18:56:16 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2012-11-23 18:56:16 -0500 |
commit | 6cb86c3a330caedc323599cb11fbed4138958271 (patch) | |
tree | 6b0f1e44d69ed1d043b23f5f64e9f7e8b9830c07 /configure.ac | |
parent | e5cc2b881fd1db175b0d80bcccf21ae70857a532 (diff) |
Propagation of configured installation paths to Makefile.am and .c code
This commit is a continuation of the previous one in which all the configured
paths obtained in configure.ac are propagated to the Makefile.am and .c files
via AM_CPPFLAGS of the form -DUDEV_CONF_FILE=\"$(udevconffile)\". This should
address the issue in
https://github.com/gentoo/eudev/issues/17
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index ee6084c7f4..17b0325d10 100644 --- a/configure.ac +++ b/configure.ac @@ -145,12 +145,12 @@ AC_SUBST([udevlibexecdir], [${with_rootlibdir}/udev]) # sysconfdir paths AC_SUBST([udevconfdir],[${sysconfdir}/udev]) -AC_SUBST([udevhwdbdir],[${sysconfdir}/hwdb.d]) -AC_SUBST([udevkeymapdir],[${sysconfdir}/keymaps]) -AC_SUBST([udevkeymapforcereldir],[${sysconfdir}/keymaps/force-release]) - -# libexecdir paths -AC_SUBST([udevrulesdir],[${udevlibexecdir}/rules.d]) +AC_SUBST([udevconffile],[${udevconfdir}/udev.conf]) +AC_SUBST([udevhwdbdir],[${udevconfdir}/hwdb.d]) +AC_SUBST([udevhwdbbin],[${udevconfdir}/hwdb.bin]) +AC_SUBST([udevkeymapdir],[${udevconfdir}/keymaps]) +AC_SUBST([udevkeymapforceredir],[${udevkeymapdir}/force-release]) +AC_SUBST([udevrulesdir],[${udevconfdir}/rules.d]) # pkgconfigdir paths AC_SUBST([sharepkgconfigdir],[${datadir}/pkgconfig]) |