You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by tr...@apache.org on 2019/11/17 04:49:04 UTC

[openoffice] branch AOO42X updated: Add missing test command to fix gcc libstdc++ rpath detection on FreeBSD.

This is an automated email from the ASF dual-hosted git repository.

truckman pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/AOO42X by this push:
     new eda2f9d  Add missing test command to fix gcc libstdc++ rpath detection on FreeBSD.
eda2f9d is described below

commit eda2f9d6f967b9887de01e09e16788a85f8d4241
Author: Don Lewis <tr...@apache.org>
AuthorDate: Sat Nov 16 20:57:44 2019 -0800

    Add missing test command to fix gcc libstdc++ rpath detection on FreeBSD.
---
 main/configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main/configure.ac b/main/configure.ac
index ce3e1bf..4ec5594 100644
--- a/main/configure.ac
+++ b/main/configure.ac
@@ -2291,7 +2291,7 @@ AC_SUBST(COMNAME)
 
 if test "$_os" = "FreeBSD"; then
     FBSD_GCC_RPATH=
-    if "$COM" = "GCC"; then
+    if test "$COM" = "GCC"; then
         rpath=`$CC --print-file-name libstdc++.so`
         rpath=`realpath $rpath`
         rpath=`dirname $rpath`