From: Baruch Siach Date: Tue, 29 May 2018 16:12:14 +0000 (+0300) Subject: usbutils: lsusb.py is for python 3.x only X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=78b9f9c393e58590d8e416fb0ac34b947cab0bad;p=buildroot.git usbutils: lsusb.py is for python 3.x only 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 Signed-off-by: Peter Korsgaard --- diff --git a/package/usbutils/usbutils.mk b/package/usbutils/usbutils.mk index 98b7894ae7..43322e4a65 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