diff mbox series

[next] usbutils: lsusb.py is for python 3.x only

Message ID 5c1f4f9f8c6ed89fc685baf21cf6f5641087839c.1527610334.git.baruch@tkos.co.il
State Accepted
Commit 78b9f9c393e58590d8e416fb0ac34b947cab0bad
Headers show
Series [next] usbutils: lsusb.py is for python 3.x only | expand

Commit Message

Baruch Siach May 29, 2018, 4:12 p.m. UTC
usbutils version 010 converted the lsusb.py script to Python 3. Keep the
lsusb.py script on target only when Python 3.x is enabled.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/usbutils/usbutils.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Peter Korsgaard May 29, 2018, 7:17 p.m. UTC | #1
>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > usbutils version 010 converted the lsusb.py script to Python 3. Keep the
 > lsusb.py script on target only when Python 3.x is enabled.

 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed to next, thanks.
diff mbox series

Patch

diff --git a/package/usbutils/usbutils.mk b/package/usbutils/usbutils.mk
index 98b7894ae774..43322e4a654b 100644
--- a/package/usbutils/usbutils.mk
+++ b/package/usbutils/usbutils.mk
@@ -16,8 +16,8 @@  ifeq ($(BR2_PACKAGE_BUSYBOX),y)
 USBUTILS_DEPENDENCIES += busybox
 endif
 
-# Nice lsusb.py script only if there's python
-ifeq ($(BR2_PACKAGE_PYTHON),)
+# Nice lsusb.py script only if there's python 3.x
+ifeq ($(BR2_PACKAGE_PYTHON3),)
 define USBUTILS_REMOVE_PYTHON
 	rm -f $(TARGET_DIR)/usr/bin/lsusb.py
 endef