61a7a3a2f7
quota strips binaries during installation by default using 'install -s', but that uses the host strip so doesn't work for cross compilation, and stripping or not is handled globally in Buildroot during target-finalize, so disable it here. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
38 lines
1.0 KiB
Makefile
38 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# quota
|
|
#
|
|
################################################################################
|
|
|
|
QUOTA_VERSION = 4.01
|
|
QUOTA_SITE = http://downloads.sourceforge.net/project/linuxquota/quota-tools/$(QUOTA_VERSION)
|
|
QUOTA_DEPENDENCIES = host-gettext
|
|
QUOTA_AUTORECONF = YES
|
|
QUOTA_LICENSE = GPLv2+
|
|
QUOTA_CONF_OPTS = --disable-strip-binaries
|
|
|
|
QUOTA_CFLAGS = $(TARGET_CFLAGS)
|
|
QUOTA_LDFLAGS = $(TARGET_LDFLAGS)
|
|
|
|
ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
|
|
QUOTA_DEPENDENCIES += gettext
|
|
QUOTA_LDFLAGS += -lintl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBTIRPC),y)
|
|
QUOTA_DEPENDENCIES += libtirpc
|
|
QUOTA_CFLAGS += -I$(STAGING_DIR)/usr/include/tirpc/
|
|
QUOTA_LDFLAGS += -ltirpc
|
|
endif
|
|
|
|
QUOTA_MAKE_OPTS = $(TARGET_CONFIGURE_OPTS) CFLAGS="$(QUOTA_CFLAGS) -D_GNU_SOURCE" LDFLAGS="$(QUOTA_LDFLAGS)"
|
|
QUOTA_CONF_ENV = \
|
|
CFLAGS="$(QUOTA_CFLAGS) -D_GNU_SOURCE" LDFLAGS="$(QUOTA_LDFLAGS)"
|
|
|
|
# Package uses autoconf but not automake.
|
|
QUOTA_INSTALL_TARGET_OPTS = \
|
|
ROOTDIR=$(TARGET_DIR) \
|
|
install
|
|
|
|
$(eval $(autotools-package))
|