diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-06-23 13:50:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 13:50:28 -0700 |
commit | 9c772c136bc6fdd4f047db7d3391087293fd2762 (patch) | |
tree | 840f012b4e939ec359ca393198bc4606f8092769 | |
parent | 6afcb0d0e0172dd633ce30bf8fd9c1595638acd2 (diff) | |
parent | 7e59e8947a4d98322d84f3cd3f5a7ed80e571814 (diff) |
Merge pull request #12548 from neheb/power
powertop: fix compilation with glibc
-rw-r--r-- | utils/powertop/Makefile | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/utils/powertop/Makefile b/utils/powertop/Makefile index 4fa32c542..68953d493 100644 --- a/utils/powertop/Makefile +++ b/utils/powertop/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=powertop PKG_VERSION:=2.10 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://01.org/sites/default/files/downloads/ @@ -39,13 +39,10 @@ define Package/powertop/description and power management. endef -TARGET_CFLAGS += $(FPIC) -ifeq ($(CONFIG_USE_UCLIBC),y) -TARGET_CFLAGS += -fno-stack-protector -endif -TARGET_LDFLAGS += $(if $(INTL_FULL),-lintl) - -CONFIGURE_ARGS += --without-pic +TARGET_LDFLAGS += \ + $(if $(INTL_FULL),-lintl) \ + $(if $(CONFIG_USE_GLIBC),-lm) \ + $(if $(CONFIG_USE_GLIBC),-lpthread) define Package/powertop/install $(INSTALL_DIR) $(1)/usr/sbin |