diff options
author | greg@kroah.com <greg@kroah.com> | 2004-02-24 04:07:25 +0100 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-27 06:32:29 +0200 |
commit | c80da5085f915bf6305e7ed6b786b63f6e9b14ea (patch) | |
tree | 27e5568f5df185b5d0f3f809e9e8e244146c29b4 /udevinfo.c | |
parent | [PATCH] fix up libsysfs header file usage to fix bug reports from users that ... (diff) | |
download | systemd-c80da5085f915bf6305e7ed6b786b63f6e9b14ea.tar.xz systemd-c80da5085f915bf6305e7ed6b786b63f6e9b14ea.zip |
[PATCH] force udev to include the internal version of libsysfs and never the external one.
Should fix some more build bugs...
Diffstat (limited to 'udevinfo.c')
-rw-r--r-- | udevinfo.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/udevinfo.c b/udevinfo.c index 7991855b28..b94376c9ce 100644 --- a/udevinfo.c +++ b/udevinfo.c @@ -26,8 +26,9 @@ #include <stdarg.h> #include <unistd.h> #include <errno.h> -#include <sysfs/libsysfs.h> +#include "libsysfs/sysfs/libsysfs.h" +#include "libsysfs/dlist.h" #include "udev.h" #include "udev_version.h" #include "logging.h" |