mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05: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:
parent
9d21fa1044
commit
a8b398c5fd
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user