diff options
author | Wang Mingyu <wangmy@cn.fujitsu.com> | 2020-04-02 02:16:58 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-04-24 14:10:08 +0100 |
commit | 37605f613f7415d7b22beca554fcb6a9ea4a5ebc (patch) | |
tree | d8c3c36071ae4dddd099585552a24d97a47920ae /meta/recipes-support/libusb/libusb1 | |
parent | a2bfc86aaf7c5fe432f5f4f8f320337dd8936f20 (diff) | |
download | poky-37605f613f7415d7b22beca554fcb6a9ea4a5ebc.tar.gz |
libusb1: upgrade 1.0.22 -> 1.0.23
no-dll.patch
removed since it is no available for 1.0.23
(From OE-Core rev: 5d55b5e3c5b41929e348a2c9ab69ce0ba774f0cb)
Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libusb/libusb1')
-rw-r--r-- | meta/recipes-support/libusb/libusb1/no-dll.patch | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/meta/recipes-support/libusb/libusb1/no-dll.patch b/meta/recipes-support/libusb/libusb1/no-dll.patch deleted file mode 100644 index 6e6bb83d1f..0000000000 --- a/meta/recipes-support/libusb/libusb1/no-dll.patch +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | As all invokes all-recursive which uses sub-makes to invoke all-am, the | ||
2 | resulting makefile wants to build libusb-1.0.la twice. In non-parallel builds | ||
3 | the second attempt is skipped as the target already exists, but in highly | ||
4 | parallel builds it's likely that two makes will be building libusb-1.0.la at the | ||
5 | same time. | ||
6 | |||
7 | Solve this by removing the explicit all target, which as libusb-1.0.dll isn't | ||
8 | built under Linux is redundant anyway. | ||
9 | |||
10 | Upstream-Status: Pending | ||
11 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
12 | |||
13 | diff --git a/libusb/Makefile.am b/libusb/Makefile.am | ||
14 | index 0cab0a0..c880213 100644 | ||
15 | --- a/libusb/Makefile.am | ||
16 | +++ b/libusb/Makefile.am | ||
17 | @@ -1,2 +0,0 @@ | ||
18 | -all: libusb-1.0.la libusb-1.0.dll | ||
19 | - | ||