diff options
author | Jukka Rissanen <jukka.rissanen@linux.intel.com> | 2014-07-10 17:25:36 +0300 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-07-22 00:01:47 +0200 |
commit | d92a7971a8fcacf190feeaa220874db258150946 (patch) | |
tree | b9c8a0427d184c8cffce2054b2025ce4aa701989 /meta-oe/recipes-support/usb-modeswitch | |
parent | 2675c961838431fbcd0d532a5202090755538ce0 (diff) | |
download | meta-openembedded-d92a7971a8fcacf190feeaa220874db258150946.tar.gz |
usb-modeswitch: Do not try to use autotools
There is only one Makefile in the project so there is no need to use
autotools.
Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/usb-modeswitch')
-rw-r--r-- | meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.0.1.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.0.1.bb b/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.0.1.bb index 92d1ac473f..61caa84f8a 100644 --- a/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.0.1.bb +++ b/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.0.1.bb | |||
@@ -2,8 +2,6 @@ SUMMARY = "A mode switching tool for controlling 'flip flop' (multiple device) U | |||
2 | LICENSE = "GPLv2" | 2 | LICENSE = "GPLv2" |
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" |
4 | 4 | ||
5 | inherit autotools | ||
6 | |||
7 | DEPENDS = "libusb1" | 5 | DEPENDS = "libusb1" |
8 | 6 | ||
9 | SRC_URI = "http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-${PV}.tar.bz2" | 7 | SRC_URI = "http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-${PV}.tar.bz2" |
@@ -15,3 +13,7 @@ EXTRA_OEMAKE = "TCL=${bindir}/tclsh" | |||
15 | FILES_${PN} = "${bindir} ${sysconfdir} ${base_libdir}/udev/usb_modeswitch ${sbindir} ${localstatedir}/lib/usb_modeswitch" | 13 | FILES_${PN} = "${bindir} ${sysconfdir} ${base_libdir}/udev/usb_modeswitch ${sbindir} ${localstatedir}/lib/usb_modeswitch" |
16 | RDEPENDS_${PN} = "tcl" | 14 | RDEPENDS_${PN} = "tcl" |
17 | RRECOMMENDS_${PN} = "usb-modeswitch-data" | 15 | RRECOMMENDS_${PN} = "usb-modeswitch-data" |
16 | |||
17 | do_install() { | ||
18 | oe_runmake DESTDIR=${D} install | ||
19 | } | ||