summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authoraurel <aurel@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-04-15 14:55:03 +0000
committeraurel <aurel@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-04-15 14:55:03 +0000
commit0b9ace787ef82279d68354f8511151bf3dfba5fe (patch)
tree8e471c8e744aa23782a924183c0c07f6617303c5 /Makefile
parent87584d10f6c38705eb8a60ea27c2bde4c7b4fa3b (diff)
downloadmpv-0b9ace787ef82279d68354f8511151bf3dfba5fe.tar.bz2
mpv-0b9ace787ef82279d68354f8511151bf3dfba5fe.tar.xz
cross-compilation fix: don't use target CFLAGS to compile host tools
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15164 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5ebeb977d6..c12e75bfe4 100644
--- a/Makefile
+++ b/Makefile
@@ -277,7 +277,7 @@ $(MPLAYER_DEP): version.h help_mp.h
$(MENCODER_DEP): version.h help_mp.h
$(PRG_CFG): version.h codec-cfg.c codec-cfg.h
- $(HOST_CC) $(CFLAGS) -g codec-cfg.c mp_msg.c -o $(PRG_CFG) -DCODECS2HTML $(EXTRA_LIB) $(I18NLIBS)
+ $(HOST_CC) $(HOST_CFLAGS) -I. -g codec-cfg.c mp_msg.c -o $(PRG_CFG) -DCODECS2HTML $(EXTRA_LIB) $(I18NLIBS)
install: $(ALL_PRG)
ifeq ($(VIDIX),yes)