[svn-commits] pcadach: branch pcadach/chan_h323-live r40054 -
/team/pcadach/chan_h323-live/
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Wed Aug 16 10:47:32 MST 2006
Author: pcadach
Date: Wed Aug 16 12:47:32 2006
New Revision: 40054
URL: http://svn.digium.com/view/asterisk?rev=40054&view=rev
Log:
Replace references to /bin/true with builtin test command
Modified:
team/pcadach/chan_h323-live/acinclude.m4
team/pcadach/chan_h323-live/configure
Modified: team/pcadach/chan_h323-live/acinclude.m4
URL: http://svn.digium.com/view/asterisk/team/pcadach/chan_h323-live/acinclude.m4?rev=40054&r1=40053&r2=40054&view=diff
==============================================================================
--- team/pcadach/chan_h323-live/acinclude.m4 (original)
+++ team/pcadach/chan_h323-live/acinclude.m4 Wed Aug 16 12:47:32 2006
@@ -272,15 +272,15 @@
if test ${$2_MAJOR_VERSION} -lt $3; then
unset HAS_$2
elif test ${$2_MAJOR_VERSION} -gt $3; then
- /bin/true
+ test
elif test ${$2_MINOR_VERSION} -lt $4; then
unset HAS_$2
elif test ${$2_MINOR_VERSION} -gt $4; then
- /bin/true
+ test
elif test ${$2_BUILD_NUMBER} -lt $5; then
unset HAS_$2
elif test ${$2_BUILD_NUMBER} -gt $5; then
- /bin/true
+ test
fi
if test "${HAS_$2:-unset}" = "unset"; then
AC_MSG_RESULT(no)
Modified: team/pcadach/chan_h323-live/configure
URL: http://svn.digium.com/view/asterisk/team/pcadach/chan_h323-live/configure?rev=40054&r1=40053&r2=40054&view=diff
==============================================================================
--- team/pcadach/chan_h323-live/configure (original)
+++ team/pcadach/chan_h323-live/configure Wed Aug 16 12:47:32 2006
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.ac Revision: 39802 .
+# From configure.ac Revision: 40032 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59.
#
@@ -19328,15 +19328,15 @@
if test ${PWLIB_MAJOR_VERSION} -lt 1; then
unset HAS_PWLIB
elif test ${PWLIB_MAJOR_VERSION} -gt 1; then
- /bin/true
+ test
elif test ${PWLIB_MINOR_VERSION} -lt 10; then
unset HAS_PWLIB
elif test ${PWLIB_MINOR_VERSION} -gt 10; then
- /bin/true
+ test
elif test ${PWLIB_BUILD_NUMBER} -lt 0; then
unset HAS_PWLIB
elif test ${PWLIB_BUILD_NUMBER} -gt 0; then
- /bin/true
+ test
fi
if test "${HAS_PWLIB:-unset}" = "unset"; then
echo "$as_me:$LINENO: result: no" >&5
@@ -19668,15 +19668,15 @@
if test ${OPENH323_MAJOR_VERSION} -lt 1; then
unset HAS_OPENH323
elif test ${OPENH323_MAJOR_VERSION} -gt 1; then
- /bin/true
+ test
elif test ${OPENH323_MINOR_VERSION} -lt 18; then
unset HAS_OPENH323
elif test ${OPENH323_MINOR_VERSION} -gt 18; then
- /bin/true
+ test
elif test ${OPENH323_BUILD_NUMBER} -lt 0; then
unset HAS_OPENH323
elif test ${OPENH323_BUILD_NUMBER} -gt 0; then
- /bin/true
+ test
fi
if test "${HAS_OPENH323:-unset}" = "unset"; then
echo "$as_me:$LINENO: result: no" >&5
More information about the svn-commits
mailing list