diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-02 14:47:57 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-01-02 14:47:57 +0000 |
commit | 6467fef4198d9deaf2c9bf47a14ec5fd00dd9b75 (patch) | |
tree | e1c48b15f97aedd788b2ee61aa760bc053c0659b /package/devel/perf/Makefile | |
parent | d3e233f02c7c360b8638737b6a18a479b2898c70 (diff) | |
download | upstream-6467fef4198d9deaf2c9bf47a14ec5fd00dd9b75.tar.gz upstream-6467fef4198d9deaf2c9bf47a14ec5fd00dd9b75.tar.bz2 upstream-6467fef4198d9deaf2c9bf47a14ec5fd00dd9b75.zip |
perf: fix musl compatibility
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 48067
Diffstat (limited to 'package/devel/perf/Makefile')
-rw-r--r-- | package/devel/perf/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/package/devel/perf/Makefile b/package/devel/perf/Makefile index d6db053173..c999229324 100644 --- a/package/devel/perf/Makefile +++ b/package/devel/perf/Makefile @@ -24,7 +24,7 @@ include $(INCLUDE_DIR)/package.mk define Package/perf SECTION:=devel CATEGORY:=Development - DEPENDS:= @USE_GLIBC +libelf1 +libdw +libpthread +librt +binutils + DEPENDS:= @!USE_UCLIBC +libelf1 +libdw +libpthread +librt +binutils TITLE:=Linux performance monitoring tool VERSION:=$(LINUX_VERSION)-$(PKG_RELEASE) URL:=http://www.kernel.org @@ -57,6 +57,10 @@ MAKE_FLAGS = \ WERROR=0 \ prefix=/usr +ifdef CONFIG_USE_MUSL + MAKE_FLAGS += EXTRA_CFLAGS="-include $(CURDIR)/musl-compat.h -D__UCLIBC__" +endif + define Build/Compile +$(MAKE_FLAGS) $(MAKE) $(PKG_JOBS) \ -C $(PKG_BUILD_DIR) \ |