[117731] trunk/base

jmr at macports.org jmr at macports.org
Sun Mar 9 16:06:51 PDT 2014


Revision: 117731
          https://trac.macports.org/changeset/117731
Author:   jmr at macports.org
Date:     2014-03-09 16:06:51 -0700 (Sun, 09 Mar 2014)
Log Message:
-----------
avoid non-portable test operand as per autoconf manual

Modified Paths:
--------------
    trunk/base/aclocal.m4
    trunk/base/configure

Modified: trunk/base/aclocal.m4
===================================================================
--- trunk/base/aclocal.m4	2014-03-09 21:58:48 UTC (rev 117730)
+++ trunk/base/aclocal.m4	2014-03-09 23:06:51 UTC (rev 117731)
@@ -126,7 +126,7 @@
 	_AC_SRCDIRS(["$ac_dir"])
 	cd "$ac_dir"
 
-	if test "$no_recursion" != yes -o ! -f "$ac_srcdir/config.status"; then
+	if test "$no_recursion" != yes || test ! -f "$ac_srcdir/config.status"; then
 		AC_MSG_NOTICE([=== configuring in $ac_dir ($mp_popdir/$ac_dir)])
 		if test -f "$ac_srcdir/configure"; then
 			mp_sub_configure_args=

Modified: trunk/base/configure
===================================================================
--- trunk/base/configure	2014-03-09 21:58:48 UTC (rev 117730)
+++ trunk/base/configure	2014-03-09 23:06:51 UTC (rev 117731)
@@ -9536,7 +9536,7 @@
 
 	cd "$ac_dir"
 
-	if test "$no_recursion" != yes -o ! -f "$ac_srcdir/config.status"; then
+	if test "$no_recursion" != yes || test ! -f "$ac_srcdir/config.status"; then
 		{ $as_echo "$as_me:${as_lineno-$LINENO}: === configuring in $ac_dir ($mp_popdir/$ac_dir)" >&5
 $as_echo "$as_me: === configuring in $ac_dir ($mp_popdir/$ac_dir)" >&6;}
 		if test -f "$ac_srcdir/configure"; then
@@ -9854,7 +9854,7 @@
 
 	cd "$ac_dir"
 
-	if test "$no_recursion" != yes -o ! -f "$ac_srcdir/config.status"; then
+	if test "$no_recursion" != yes || test ! -f "$ac_srcdir/config.status"; then
 		{ $as_echo "$as_me:${as_lineno-$LINENO}: === configuring in $ac_dir ($mp_popdir/$ac_dir)" >&5
 $as_echo "$as_me: === configuring in $ac_dir ($mp_popdir/$ac_dir)" >&6;}
 		if test -f "$ac_srcdir/configure"; then
@@ -10169,7 +10169,7 @@
 
 	cd "$ac_dir"
 
-	if test "$no_recursion" != yes -o ! -f "$ac_srcdir/config.status"; then
+	if test "$no_recursion" != yes || test ! -f "$ac_srcdir/config.status"; then
 		{ $as_echo "$as_me:${as_lineno-$LINENO}: === configuring in $ac_dir ($mp_popdir/$ac_dir)" >&5
 $as_echo "$as_me: === configuring in $ac_dir ($mp_popdir/$ac_dir)" >&6;}
 		if test -f "$ac_srcdir/configure"; then
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20140309/0f1bb0d5/attachment.html>


More information about the macports-changes mailing list