11dbb61533
Packages shouldn't strip executables by themselves, so that Buildroot controls whether stripping should occur or not. This also fixes the build on Blackfin FLAT where stripping actually doesn't work because stripping FLAT binaries is not supported. Fixes: http://autobuild.buildroot.org/results/7d4/7d4e59c96928a06db5091235bf2eacf462ba8a21/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
24 lines
617 B
Makefile
24 lines
617 B
Makefile
################################################################################
|
|
#
|
|
# hdparm
|
|
#
|
|
################################################################################
|
|
|
|
HDPARM_VERSION = 9.43
|
|
HDPARM_SITE = http://downloads.sourceforge.net/project/hdparm/hdparm
|
|
HDPARM_LICENSE = BSD-Style
|
|
HDPARM_LICENSE_FILES = LICENSE.TXT
|
|
|
|
define HDPARM_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
|
STRIP=/bin/true
|
|
endef
|
|
|
|
define HDPARM_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/hdparm $(TARGET_DIR)/sbin/hdparm
|
|
endef
|
|
|
|
$(eval $(generic-package))
|