diff options
author | Måns Rullgård <mans@mansr.com> | 2010-01-28 20:13:46 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-01-28 20:13:46 +0000 |
commit | 604b2f5276d9cc283ae75df9b64eee7c5f33792a (patch) | |
tree | 308f551ee6b45a89f727ac1fe59f9c46e7fa941d | |
parent | 34032e26ab09ddbba8b6f27290eb4eb8d0b6bd72 (diff) | |
download | ffmpeg-604b2f5276d9cc283ae75df9b64eee7c5f33792a.tar.gz |
Append ECFLAGS to CFLAGS
This makes it easy to supply extra flags on the make command line
for testing purposes.
Originally committed as revision 21515 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | common.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mak b/common.mak index aa3324ae93..e94e98e639 100644 --- a/common.mak +++ b/common.mak @@ -54,7 +54,7 @@ endif OBJS-$(HAVE_MMX) += $(MMX-OBJS-yes) -CFLAGS += $(CFLAGS-yes) +CFLAGS += $(CFLAGS-yes) $(ECFLAGS) OBJS += $(OBJS-yes) FFLIBS := $(FFLIBS-yes) $(FFLIBS) TESTPROGS += $(TESTPROGS-yes) |