Subject: liboil: don't check for assembler options and add compiler options From: Michael Olbrich Checking for "-Wa,-mfpu=vfp" and then adding "-mfpu=vfp" os of course nonsense. Signed-off-by: Michael Olbrich --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: liboil-0.3.15/configure.ac =================================================================== --- liboil-0.3.15.orig/configure.ac +++ liboil-0.3.15/configure.ac @@ -188,10 +188,10 @@ if test x$HAVE_GCC_ASM = xyes -a x$HAVE_ fi if test x$HAVE_GCC_ASM = xyes -a x$HAVE_ARM = xyes ; then - AS_COMPILER_FLAG(["-Wa,-mfpu=vfp"], + AS_COMPILER_FLAG(["-mfpu=vfp"], [VFP_CFLAGS="$VFP_CFLAGS -mfpu=vfp"], true) - #AS_COMPILER_FLAG(["-Wa,-mfloat-abi=softfp"], + #AS_COMPILER_FLAG(["-mfloat-abi=softfp"], # [VFP_CFLAGS="$VFP_CFLAGS -mfloat-abi=softfp"], # true) fi