From a6fb8b17b22d221b0d3ae9fdbafc10aea75c28e2 Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Mon, 17 May 2010 16:09:12 +0000 Subject: Re #1050: fixed aconfigure error caused by iPhone merging git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3176 74dad513-b988-da41-8d7b-12977e46ad98 --- aconfigure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'aconfigure.ac') diff --git a/aconfigure.ac b/aconfigure.ac index 1e804912..a416d95a 100644 --- a/aconfigure.ac +++ b/aconfigure.ac @@ -41,13 +41,13 @@ AC_PROG_CC AC_PROG_CXX AC_LANG_C -if test "$AR" = ""; then AR="$(CROSS_COMPILE)ar rv"; fi +if test "$AR" = ""; then AR="${CROSS_COMPILE}ar rv"; fi AC_SUBST(AR) if test "$LD" = ""; then LD="$CC"; fi AC_SUBST(LD) if test "$LDOUT" = ""; then LDOUT="-o"; fi AC_SUBST(LDOUT) -if test "$RANLIB" = ""; then RANLIB="$(CROSSCOMPILE)ranlib"; fi +if test "$RANLIB" = ""; then RANLIB="${CROSS_COMPILE}ranlib"; fi AC_SUBST(RANLIB) if test "$OBJEXT" = ""; then OBJEXT='o'; fi AC_SUBST(OBJEXT) -- cgit v1.2.3