diff options
author | Måns Rullgård <mans@mansr.com> | 2009-01-11 23:49:06 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-01-11 23:49:06 +0000 |
commit | a8e286982097d394877fc38116bb243086d4d066 (patch) | |
tree | 0fbd577a85b4a7a6f0d27a6189ed75c3e03e5b9b /configure | |
parent | d9513de67ceefcfeb7aeba39811637fa9e90c3a3 (diff) | |
download | ffmpeg-a8e286982097d394877fc38116bb243086d4d066.tar.gz |
configure: fix PIC activation for x86_64 shared libs
Originally committed as revision 16563 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2085,7 +2085,7 @@ fi if enabled shared; then # LIBOBJFLAGS may have already been set in the OS configuration if test -z "$LIBOBJFLAGS" ; then - case "$arch" in + case "${subarch-$arch}" in x86_64|ia64|alpha|sparc*|power*|parisc*|mips*) LIBOBJFLAGS='$(PIC)' ;; esac fi |