From a8e286982097d394877fc38116bb243086d4d066 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Sun, 11 Jan 2009 23:49:06 +0000 Subject: [PATCH] configure: fix PIC activation for x86_64 shared libs Originally committed as revision 16563 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index ccca8d85d9..f1eab728fe 100755 --- a/configure +++ b/configure @@ -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