[Buildroot] [git commit] quota: fix build with libtirpc

Thomas Petazzoni thomas.petazzoni at free-electrons.com
Wed Jul 29 09:57:30 UTC 2015


commit: http://git.buildroot.net/buildroot/commit/?id=7d9c852de61ec80943d0ddd25ef23045a6651517
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

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 at sysmic.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at free-electrons.com>
---
 package/quota/quota.mk |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/quota/quota.mk b/package/quota/quota.mk
index 5e5e637..a6b0322 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)"


More information about the buildroot mailing list