udev: extras needs BR2_PROGRAM_INVOCATION
authorPeter Korsgaard <jacmet@sunsite.dk>
Tue, 26 Jul 2011 08:41:31 +0000 (10:41 +0200)
committerPeter Korsgaard <jacmet@sunsite.dk>
Tue, 26 Jul 2011 08:41:31 +0000 (10:41 +0200)
For usbutils.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/udev/Config.in

index 254a8f43df94c8faf47db7c1800865cb114f3821..48391e5fbbde36680deb52f3c8b89239f2824e85 100644 (file)
@@ -9,8 +9,9 @@ if BR2_PACKAGE_UDEV
 
 config BR2_PACKAGE_UDEV_ALL_EXTRAS
        bool "enable all extras"
-       depends on BR2_LARGEFILE
-       depends on BR2_USE_WCHAR
+       depends on BR2_LARGEFILE # acl
+       depends on BR2_USE_WCHAR # libglib2
+       depends on BR2_PROGRAM_INVOCATION # usbutils
        select BR2_PACKAGE_ACL
        select BR2_PACKAGE_LIBUSB
        select BR2_PACKAGE_LIBUSB_COMPAT
@@ -21,7 +22,7 @@ config BR2_PACKAGE_UDEV_ALL_EXTRAS
          Enable all extras with external dependencies like
          libacl, libusb, libusb-compat, usbutils, hwdata
 
-comment "udev extras requires a toolchain with LARGEFILE + WCHAR support"
-       depends on !(BR2_LARGEFILE && BR2_USE_WCHAR)
+comment "udev extras requires a toolchain with LARGEFILE/WCHAR/PROGRAM_INVOCATION support"
+       depends on !(BR2_LARGEFILE && BR2_USE_WCHAR && BR2_PROGRAM_INVOCATION)
 
 endif