diff options
-rw-r--r-- | INSTALL | 9 | ||||
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | configure.ac | 19 |
3 files changed, 24 insertions, 9 deletions
@@ -0,0 +1,9 @@ +Usual options for udev installed in the root filesystem are: + ./configure + --exec-prefix="" + +The defined location for scripts and binaries which are called +from rules is /lib/udev/ on all systems and architectures. Any +other location will break other packages, who rightfully expect +the /lib/udev/ directory, to install their rule helper and udev +rule files. @@ -0,0 +1,5 @@ +udev 20081230 +============= + +Initial release. + diff --git a/configure.ac b/configure.ac index 87516d2..d7f397e 100644 --- a/configure.ac +++ b/configure.ac @@ -61,7 +61,7 @@ fi AC_ARG_WITH(udev-prefix, AS_HELP_STRING([--with-udev-prefix=DIR], [add prefix to internal udev path names]), - [], [with_udev_prefix=]) + [], [with_udev_prefix='${exec_prefix}']) udev_prefix=$with_udev_prefix AC_SUBST(udev_prefix) @@ -74,15 +74,16 @@ udev-acl/Makefile AC_OUTPUT echo " - udev-extras $VERSION - ==================== + udev-extras $VERSION + ==================== - udev_prefix: ${udev_prefix} - mandir: ${mandir} + udev_prefix: ${udev_prefix} + datarootdir: ${datarootdir} + mandir: ${mandir} - compiler: ${CC} - cflags: ${CFLAGS} - ldflags: ${LDFLAGS} + compiler: ${CC} + cflags: ${CFLAGS} + ldflags: ${LDFLAGS} - xsltproc: ${XSLTPROC} + xsltproc: ${XSLTPROC} " |