summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--INSTALL9
-rw-r--r--NEWS5
-rw-r--r--configure.ac19
3 files changed, 24 insertions, 9 deletions
diff --git a/INSTALL b/INSTALL
index e69de29..7c84f4f 100644
--- a/INSTALL
+++ b/INSTALL
@@ -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.
diff --git a/NEWS b/NEWS
index e69de29..a6d3030 100644
--- a/NEWS
+++ b/NEWS
@@ -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}
"