diff options
author | Måns Rullgård <mans@mansr.com> | 2007-06-15 20:35:37 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-06-15 20:35:37 +0000 |
commit | 18ca9a4a99bde0ab7523b62cc23031f16ca6ab33 (patch) | |
tree | 64f79e04c2cb58950c2c854f93c48aa55c917030 /configure | |
parent | 99a6d06fea9271dc5c00d0ad2cf7d03f003fa55a (diff) | |
download | ffmpeg-18ca9a4a99bde0ab7523b62cc23031f16ca6ab33.tar.gz |
replace TARGET_ARCH_* to ARCH_* for consistency
Originally committed as revision 9322 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1974,14 +1974,12 @@ echo "SLIBPREF=$SLIBPREF" >> config.mak echo "SLIBSUF=\${BUILDSUF}$SLIBSUF" >> config.mak echo "EXESUF=\${BUILDSUF}$EXESUF" >> config.mak -ucarch=`toupper $arch` -echo "TARGET_ARCH_${ucarch}=yes" >> config.mak enable $arch # special cases case "$arch" in x86_32|x86_64) - echo "TARGET_ARCH_X86=yes" >> config.mak + echo "ARCH_X86=yes" >> config.mak echo "#define ARCH_X86 1" >> $TMPH ;; powerpc) @@ -1990,7 +1988,7 @@ case "$arch" in fi ;; sparc64) - echo "TARGET_ARCH_SPARC=yes" >> config.mak + echo "ARCH_SPARC=yes" >> config.mak echo "#define ARCH_SPARC 1" >> $TMPH ;; esac |