summaryrefslogtreecommitdiff
path: root/aconfigure.ac
diff options
context:
space:
mode:
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)