mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-11-23 23:10:57 +07:00
configure.ac: add --enable-hwdb option. Address issue #111.
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
This commit is contained in:
parent
53997d40dd
commit
ebb37f6a47
@ -4,7 +4,6 @@ DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc
|
||||
SUBDIRS = \
|
||||
src \
|
||||
rules \
|
||||
hwdb \
|
||||
docs \
|
||||
test
|
||||
|
||||
@ -12,3 +11,9 @@ if ENABLE_MANPAGES
|
||||
SUBDIRS += \
|
||||
man
|
||||
endif
|
||||
|
||||
if ENABLE_HWDB
|
||||
SUBDIRS += \
|
||||
hwdb
|
||||
endif
|
||||
|
||||
|
@ -281,6 +281,11 @@ AM_CONDITIONAL(HAVE_KMOD, [test "$have_kmod" = "yes"])
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
AC_ARG_ENABLE([hwdb], AS_HELP_STRING([--enable-hwdb],[install hwdb.d files]),[],[enable_hwdb=yes])
|
||||
AM_CONDITIONAL(ENABLE_HWDB, [test "x$enable_hwdb" = "xyes"])
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
AC_CONFIG_FILES([Makefile
|
||||
docs/Makefile
|
||||
docs/gudev/Makefile
|
||||
|
Loading…
Reference in New Issue
Block a user