ffmpeg: fix build with ccache

With ccache, HOSTCC contains a space, so ensure it's properly quoted.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard 2011-01-01 11:49:01 +01:00
parent 6bdaee1e0f
commit e18087a601

View File

@ -136,7 +136,7 @@ define FFMPEG_CONFIGURE_CMDS
--enable-cross-compile \
--cross-prefix=$(TARGET_CROSS) \
--sysroot=$(STAGING_DIR) \
--host-cc=$(HOSTCC) \
--host-cc="$(HOSTCC)" \
--arch=$(BR2_ARCH) \
--extra-cflags=-fPIC \
$(DISABLE_IPV6) \