summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2012-03-20 08:10:27 +0100
committerMichael Biebl <biebl@debian.org>2012-03-20 08:10:27 +0100
commit53d03d644e105595a390d8923e512e2322eb880f (patch)
tree0a816dcc2e5e508da3709f379c4a8351bf1c9ebd
parent4d06b16b69f8e9323ce128c92db4bb3e99cbd3aa (diff)
build-sys: missing AC_SUBST for UDEVDIR
Without this the UDEVDIR never gets substituted and the rules file is installed to root filesystem /rules.d/ as opposed to /lib/udev/rules.d/
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 7351109..7a3b33f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -216,6 +216,7 @@ AS_IF([test "x$enable_udev_acl" = "xyes"], [
if test -z "$UDEVDIR" ; then
UDEVDIR="/lib/udev"
fi
+ AC_SUBST(UDEVDIR)
])
AM_CONDITIONAL([ENABLE_UDEV_ACL], [test "x$enable_udev_acl" = "xyes"])