From 61a7a3a2f7041723c76ddb185486de420e94d079 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Wed, 8 Oct 2014 19:58:25 +0200 Subject: [PATCH] quota: don't try to strip binaries during installation 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 --- package/quota/quota.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/quota/quota.mk b/package/quota/quota.mk index 5011c0fc2..0e7a2b0d8 100644 --- a/package/quota/quota.mk +++ b/package/quota/quota.mk @@ -9,6 +9,7 @@ QUOTA_SITE = http://downloads.sourceforge.net/project/linuxquota/quota-tools/$(Q QUOTA_DEPENDENCIES = host-gettext QUOTA_AUTORECONF = YES QUOTA_LICENSE = GPLv2+ +QUOTA_CONF_OPTS = --disable-strip-binaries QUOTA_CFLAGS = $(TARGET_CFLAGS) QUOTA_LDFLAGS = $(TARGET_LDFLAGS)