summaryrefslogtreecommitdiff
path: root/aconfigure.ac
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2010-05-17 16:09:12 +0000
committerBenny Prijono <bennylp@teluu.com>2010-05-17 16:09:12 +0000
commita6fb8b17b22d221b0d3ae9fdbafc10aea75c28e2 (patch)
treeb1e3fc14998a17d1e5dbf86118351b96917f5801 /aconfigure.ac
parent3fb7b207726aa7500b761c7056f7dbf82ac5015d (diff)
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
Diffstat (limited to 'aconfigure.ac')
-rw-r--r--aconfigure.ac4
1 files changed, 2 insertions, 2 deletions
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)