summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJérôme Pouiller <jezz@sysmic.org>2015-07-29 11:48:56 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-07-29 11:57:30 +0200
commit7d9c852de61ec80943d0ddd25ef23045a6651517 (patch)
tree971cb77a668d114f500ae72df816d15ac741f6b5
parent1ec19e5e47486d2ba61564b37f1c8b6e62ec6d28 (diff)
downloadbuildroot-7d9c852de61ec80943d0ddd25ef23045a6651517.tar.gz
buildroot-7d9c852de61ec80943d0ddd25ef23045a6651517.zip
quota: fix build with libtirpc
Fixes: http://autobuild.buildroot.net/results/bba8faf210414d956cc07629b8ba99ceed0ebdf6/ http://autobuild.buildroot.net/results/f525b48e2982adc4987cb772be92eeda30569c13/ http://autobuild.buildroot.net/results/0d2c2cd0bda1dd3c1e137117df535d8e02d67e8b/ http://autobuild.buildroot.net/results/a815a4f943e6a07f87f8f6bbf9910459575db311/ http://autobuild.buildroot.net/results/1b72769e65444322de4bfcb02200b7d999f9f5c1/ http://autobuild.buildroot.net/results/195f6c34904b8185d44611c3d56084cb7d3e8a14/ http://autobuild.buildroot.net/results/aac02dd6c5ea04ea70cfa6921a04b5558a9bbe7f/ http://autobuild.buildroot.net/results/fbaec431108bec088ff543771c52f2bc20e15b31/ [...] QUOTA_CFLAGS / QUOTA_LIBS shouldn't be quoted since QUOTA_MAKE_OPTS and QUOTA_CONF_ENV already add quotes. Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--package/quota/quota.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/quota/quota.mk b/package/quota/quota.mk
index 5e5e637a9e..a6b03225ac 100644
--- a/package/quota/quota.mk
+++ b/package/quota/quota.mk
@@ -20,8 +20,8 @@ endif
ifeq ($(BR2_PACKAGE_LIBTIRPC),y)
QUOTA_DEPENDENCIES += libtirpc host-pkgconf
-QUOTA_CFLAGS += "`$(PKG_CONFIG_HOST_BINARY) --cflags libtirpc`"
-QUOTA_LIBS += "`$(PKG_CONFIG_HOST_BINARY) --libs libtirpc`"
+QUOTA_CFLAGS += `$(PKG_CONFIG_HOST_BINARY) --cflags libtirpc`
+QUOTA_LIBS += `$(PKG_CONFIG_HOST_BINARY) --libs libtirpc`
endif
QUOTA_MAKE_OPTS = $(TARGET_CONFIGURE_OPTS) CFLAGS="$(QUOTA_CFLAGS) -D_GNU_SOURCE" LIBS="$(QUOTA_LIBS)"
OpenPOWER on IntegriCloud