diff options
author | Måns Rullgård <mans@mansr.com> | 2009-07-12 21:14:00 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-07-12 21:14:00 +0000 |
commit | ce40e3470c204223a42470b9f9c76b25b7d5e42c (patch) | |
tree | 9b2e3d69c58d6861159057a1caa59d8709f99194 /configure | |
parent | 8c6d2da5be7af7b939c59ee53b22b598af07cb0e (diff) | |
download | ffmpeg-ce40e3470c204223a42470b9f9c76b25b7d5e42c.tar.gz |
Set CPPFLAGS in config.mak using normal assignment
Setting this value using ?= caused some trouble if it was already
defined in the environment.
Originally committed as revision 19418 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2505,7 +2505,7 @@ enabled stripping && echo "STRIP=$strip" >> config.mak || echo "STRIP=echo ignoring strip" >> config.mak -echo "CPPFLAGS?=$CPPFLAGS" >> config.mak +echo "CPPFLAGS=$CPPFLAGS" >> config.mak echo "CFLAGS=$CFLAGS" >> config.mak echo "ASFLAGS=$ASFLAGS" >> config.mak echo "CC_O=$CC_O" >> config.mak |