diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-07-06 09:27:32 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-07-07 08:20:21 +0200 |
commit | a1c8fa41f6f6e5047182fe90656bcd30243bca8d (patch) | |
tree | cf1b67669365d0aabc1756fa5ffab71cbeaea571 /package/ezxml/ezxml.mk | |
parent | 08235f7144d08bc111b07d3523ac6439f6fd0b94 (diff) |
Update all packages to quote $(TARGET_CC)
Now that TARGET_CC contains several space-separated words, it must be
used quoted everywhere.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/ezxml/ezxml.mk')
-rw-r--r-- | package/ezxml/ezxml.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/ezxml/ezxml.mk b/package/ezxml/ezxml.mk index bf2e35f58..3746b514e 100644 --- a/package/ezxml/ezxml.mk +++ b/package/ezxml/ezxml.mk @@ -21,7 +21,7 @@ $(EZXML_DIR)/.configured: $(EZXML_DIR)/.unpacked touch $@ $(EZXML_DIR)/libezxml.a: $(EZXML_DIR)/.configured - $(MAKE) CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS)" AR=$(TARGET_AR) \ + $(MAKE) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" AR=$(TARGET_AR) \ -f GNUmakefile -C $(EZXML_DIR) $(STAGING_DIR)/usr/lib/libezxml.a: $(EZXML_DIR)/libezxml.a |