diff options
author | Jo-Philipp Wich <jo@mein.io> | 2016-05-16 17:16:18 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2016-05-16 17:17:12 +0200 |
commit | 23a1fa07db3a9e136cceb1800616cf502d19f1c9 (patch) | |
tree | 536e8aaaabea762dcb66be8130be76e4ef316abd /package/libs/libusb/Makefile | |
parent | d4e552ba1619df50317fd75031741f0508b7384a (diff) | |
download | upstream-23a1fa07db3a9e136cceb1800616cf502d19f1c9.tar.gz upstream-23a1fa07db3a9e136cceb1800616cf502d19f1c9.tar.bz2 upstream-23a1fa07db3a9e136cceb1800616cf502d19f1c9.zip |
libusb: disable parallel building
The libusb package is not parallel build save, a make -j16 reliably breaks it.
Forcibly disable parallel building.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'package/libs/libusb/Makefile')
-rw-r--r-- | package/libs/libusb/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libs/libusb/Makefile b/package/libs/libusb/Makefile index 58536c021c..192b8a0d04 100644 --- a/package/libs/libusb/Makefile +++ b/package/libs/libusb/Makefile @@ -16,7 +16,7 @@ PKG_SOURCE_URL:=@SF/$(PKG_NAME) PKG_MD5SUM:=1d4eb194eaaa2bcfbba28102768c7dbf PKG_INSTALL:=1 -PKG_BUILD_PARALLEL:=1 +PKG_BUILD_PARALLEL:=0 PKG_LICENSE:=LGPL-2.1 PKG_MAINTAINER := Felix Fietkau <nbd@openwrt.org> |