aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgreg@kroah.com <greg@kroah.com>2003-11-12 07:23:39 -0800
committerGreg KH <gregkh@suse.de>2005-04-26 21:06:23 -0700
commite40fec176bcdd0b4e763cf85817a7e5c8e1c6c14 (patch)
treed6e74c72cbf86d141f7bda86f6b2e0ef3930e877
parentdc5cecf659aac8686bb7db1d047456fdef281ab1 (diff)
downloadudev-e40fec176bcdd0b4e763cf85817a7e5c8e1c6c14.tar.gz
[PATCH] change UDEV_SYSFS_PATH environment variable due to libsysfs change.
-rw-r--r--test/label_test2
-rw-r--r--udev.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/label_test b/test/label_test
index f2208cbb..f06c4161 100644
--- a/test/label_test
+++ b/test/label_test
@@ -1,7 +1,7 @@
#!/bin/bash
export UDEV_TEST=yes
-export UDEV_SYSFS_PATH=$PWD/sys/
+export SYSFS_PATH=$PWD/sys/
export UDEV_CONFIG_DIR=$PWD/
export UDEV_ROOT=$PWD/udev/
export UDEV_DB=udev.tdb
diff --git a/udev.c b/udev.c
index 8746b9a8..56dab1f8 100644
--- a/udev.c
+++ b/udev.c
@@ -86,7 +86,7 @@ static void get_dirs(void)
temp = getenv("UDEV_TEST");
if (temp != NULL) {
/* hm testing is happening, use the specified values, if they are present */
- temp = getenv("UDEV_SYSFS_PATH");
+ temp = getenv("SYSFS_PATH");
if (temp)
strncpy(sysfs_path, temp, sizeof(sysfs_path));
temp = getenv("UDEV_CONFIG_DIR");