udev: fix test-udev binary

This commit is contained in:
Kay Sievers 2012-04-08 17:03:17 +02:00
parent 07cd4fc168
commit 1c0f62e37b
3 changed files with 7 additions and 4 deletions

View file

@ -1347,7 +1347,8 @@ test_udev_CFLAGS = \
$(udev_common_CFLAGS)
test_udev_LDADD = \
$(udev_common_LDADD)
$(udev_common_LDADD) \
libsystemd-basic.la
test_udev_CPPFLAGS = \
$(udev_common_CPPFLAGS)

2
TODO
View file

@ -1,4 +1,6 @@
Bugfixes:
* fix Fedora's cups.rpm to use tmpfiles instead of /lib/udev/devices/
* do not link selinux and attr against all binaries
* swap units that are activated by one name but shown in the kernel under another are semi-broken

View file

@ -48,7 +48,7 @@ int main(int argc, char *argv[])
udev = udev_new();
if (udev == NULL)
exit(1);
exit(EXIT_FAILURE);
log_debug("version %s\n", VERSION);
udev_selinux_init(udev);
@ -116,6 +116,6 @@ out:
udev_selinux_exit(udev);
udev_unref(udev);
if (err != 0)
return 1;
return 0;
return EXIT_FAILURE;
return EXIT_SUCCESS;
}