aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2009-07-12 14:13:34 +0000
committerMåns Rullgård <mans@mansr.com>2009-07-12 14:13:34 +0000
commit0115927eaeec157314bcc8e10a61c47e153adf5c (patch)
treeec4d48ce8ad6ea8414b120cd4559fe2ee56973c0
parent9e7f32775c3c6317f2e1ddf92e7a9c55449b3418 (diff)
downloadffmpeg-0115927eaeec157314bcc8e10a61c47e153adf5c.tar.gz
Use CFLAGS in default DEPEND_CMD
Originally committed as revision 19415 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index d681724375..dca340d2b9 100755
--- a/configure
+++ b/configure
@@ -1277,7 +1277,7 @@ target_path='.'
# gcc stupidly only outputs the basename of targets with -MM, but we need the
# full relative path for objects in subdirectories for non-recursive Make.
-DEPEND_CMD='$(DEPCC) $(CPPFLAGS) -MM $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o,"'
+DEPEND_CMD='$(DEPCC) $(CPPFLAGS) $(CFLAGS) -MM $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o,"'
# find source path
source_path="$(dirname "$0")"