1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-09-15 04:08:07 -04:00

AX_UNIQVAR_PREPEND needs to reverse its arguments before prepending.

git-svn-id: https://svn.xiph.org/trunk/ezstream@15874 0101bb08-14d6-0310-b084-bc0e0c8e3800
This commit is contained in:
moritz 2009-03-28 11:14:54 +00:00
parent 9d21fa1044
commit a8b398c5fd

View File

@ -44,7 +44,12 @@ done
AC_DEFUN([AX_UNIQVAR_PREPEND],
[
AC_REQUIRE([AC_PROG_FGREP])
_prepend_args=""
for arg in $2
do
_prepend_args="${arg} ${_prepend_args}"
done
for arg in ${_prepend_args}
do
if `echo " ${$1} x" | ${FGREP} -v -e " ${arg} " > /dev/null`; then
if test -z "${$1}"; then