Skip to content

Commit

Permalink
Extra care with quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
dridi committed Nov 26, 2016
1 parent d6216cc commit 72e91d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions varnish.m4
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ AC_DEFUN([_VARNISH_CHECK_LIB], [
save_LIBS="${LIBS}" save_LIBS="${LIBS}"
LIBS="" LIBS=""
AC_CHECK_LIB([$1], [$2]) AC_CHECK_LIB([$1], [$2])
AC_SUBST(m4_toupper($1_LIBS), [$LIBS]) AC_SUBST(m4_toupper($1_LIBS), "$LIBS")
LIBS="${save_LIBS}" LIBS="${save_LIBS}"
]) ])


Expand All @@ -58,7 +58,7 @@ AC_DEFUN([_VARNISH_SEARCH_LIBS], [
save_LIBS="${LIBS}" save_LIBS="${LIBS}"
LIBS="" LIBS=""
AC_SEARCH_LIBS([$2], [$3]) AC_SEARCH_LIBS([$2], [$3])
AC_SUBST(m4_toupper($1_LIBS), [$LIBS]) AC_SUBST(m4_toupper($1_LIBS), "$LIBS")
LIBS="${save_LIBS}" LIBS="${save_LIBS}"
]) ])


Expand Down

0 comments on commit 72e91d9

Please sign in to comment.