Commit 72e91d9e authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

Extra care with quoting

parent d6216cca
......@@ -48,7 +48,7 @@ AC_DEFUN([_VARNISH_CHECK_LIB], [
save_LIBS="${LIBS}"
LIBS=""
AC_CHECK_LIB([$1], [$2])
AC_SUBST(m4_toupper($1_LIBS), [$LIBS])
AC_SUBST(m4_toupper($1_LIBS), "$LIBS")
LIBS="${save_LIBS}"
])
......@@ -58,7 +58,7 @@ AC_DEFUN([_VARNISH_SEARCH_LIBS], [
save_LIBS="${LIBS}"
LIBS=""
AC_SEARCH_LIBS([$2], [$3])
AC_SUBST(m4_toupper($1_LIBS), [$LIBS])
AC_SUBST(m4_toupper($1_LIBS), "$LIBS")
LIBS="${save_LIBS}"
])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment