Author: pfg
Date: Tue Jan  3 18:37:15 2017
New Revision: 1777198

URL: http://svn.apache.org/viewvc?rev=1777198&view=rev
Log:
Ignore the OS when checking for the ARM target.

Linux is not the only ARM target - see i117017.

Modified:
    openoffice/trunk/main/configure.ac

Modified: openoffice/trunk/main/configure.ac
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/configure.ac?rev=1777198&r1=1777197&r2=1777198&view=diff
==============================================================================
--- openoffice/trunk/main/configure.ac (original)
+++ openoffice/trunk/main/configure.ac Tue Jan  3 18:37:15 2017
@@ -5885,7 +5885,7 @@ dnl ====================================
 dnl Check the ARM target
 dnl ===================================================================
 
-if test "$_os" = "Linux" && echo "$build_cpu" | $GREP -q arm; then
+if echo "$build_cpu" | $GREP -q arm; then
     # default value
     ARM_TARGET=ARMV4T
     AC_MSG_CHECKING([which ARM processor optimization to use])


Reply via email to