c472b7dc79
This reverts commit 2a56de2dec
, which
causes a large number of build failures, because parted now
unconditionally tries to link against -liconv.
Fixes:
http://autobuild.buildroot.net/results/cd5542eca077c2bbbcf43c1b00d25077056a7ea9/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# parted
|
|
#
|
|
################################################################################
|
|
|
|
PARTED_VERSION = 3.2
|
|
PARTED_SOURCE = parted-$(PARTED_VERSION).tar.xz
|
|
PARTED_SITE = $(BR2_GNU_MIRROR)/parted
|
|
PARTED_DEPENDENCIES = host-pkgconf util-linux
|
|
PARTED_INSTALL_STAGING = YES
|
|
# For uclinux patch
|
|
PARTED_AUTORECONF = YES
|
|
PARTED_GETTEXTIZE = YES
|
|
PARTED_LICENSE = GPL-3.0+
|
|
PARTED_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_READLINE),y)
|
|
PARTED_DEPENDENCIES += readline
|
|
PARTED_CONF_OPTS += --with-readline
|
|
else
|
|
PARTED_CONF_OPTS += --without-readline
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LVM2),y)
|
|
PARTED_DEPENDENCIES += lvm2
|
|
PARTED_CONF_OPTS += --enable-device-mapper
|
|
else
|
|
PARTED_CONF_OPTS += --disable-device-mapper
|
|
endif
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
PARTED_CONF_OPTS += --disable-dynamic-loading
|
|
endif
|
|
|
|
HOST_PARTED_DEPENDENCIES = host-pkgconf host-util-linux
|
|
HOST_PARTED_CONF_OPTS += \
|
|
--without-readline \
|
|
--disable-device-mapper
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|