mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 14:03:29 +08:00
6b706679b5
Fixes:
http://autobuild.buildroot.net/results/dd4/dd47b3ca17bdb597d6b12de6b381cf5f25abaf71/
http://autobuild.buildroot.net/results/a84/a842234fbdc8f65d48089b90ee23523540a7091f/
http://autobuild.buildroot.net/results/e63/e6351692ad6aef397e68ffdf107f3a85e4490015/
And many more.
Commit a21163aed
(package/blktrace: do not build in parallel) tried to fix
the parallel build issue, but the package doesn't use the autotools package
infrastructure so BLKTRACE_MAKE isn't used. Instead replace the explicit
$(MAKE) calls with $(MAKE1).
Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
23 lines
577 B
Makefile
23 lines
577 B
Makefile
################################################################################
|
|
#
|
|
# blktrace
|
|
#
|
|
################################################################################
|
|
|
|
BLKTRACE_VERSION = 1.1.0
|
|
BLKTRACE_SITE = http://brick.kernel.dk/snaps
|
|
BLKTRACE_DEPENDENCIES = libaio
|
|
BLKTRACE_LICENSE = GPLv2+
|
|
BLKTRACE_LICENSE_FILES = COPYING
|
|
|
|
define BLKTRACE_BUILD_CMDS
|
|
$(MAKE1) -C $(@D) $(TARGET_CONFIGURE_OPTS)
|
|
endef
|
|
|
|
define BLKTRACE_INSTALL_TARGET_CMDS
|
|
$(MAKE1) -C $(@D) $(TARGET_CONFIGURE_OPTS) install \
|
|
DESTDIR=$(TARGET_DIR) prefix=/usr
|
|
endef
|
|
|
|
$(eval $(generic-package))
|