From: Wouter Wijngaards Date: Fri, 11 Nov 2011 10:34:37 +0000 (+0000) Subject: fix escape X-Git-Tag: release-1.4.14rc1~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3e6246860f0834326d6d45b8851431c76c6a5dd;p=thirdparty%2Funbound.git fix escape git-svn-id: file:///svn/unbound/trunk@2548 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/configure b/configure index 9d4f96a5e..53505c0ac 100755 --- a/configure +++ b/configure @@ -16928,7 +16928,7 @@ $as_echo_n "checking if make supports $<... " >&6; } if test "`uname`" = "SunOS"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } - SOURCEDETERMINE='echo "$?" | awk "-F " "{print $$$$1;}" > .source' + SOURCEDETERMINE='echo "$?" | awk "-F " "{print \$$1;}" > .source' SOURCEFILE='`cat .source`' else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 diff --git a/configure.ac b/configure.ac index 6932c8d00..fd19375cf 100644 --- a/configure.ac +++ b/configure.ac @@ -881,7 +881,7 @@ fi AC_MSG_CHECKING([if make supports $<]) if test "`uname`" = "SunOS"; then AC_MSG_RESULT(no) - SOURCEDETERMINE='echo "$?" | awk "-F " "{print $$$$1;}" > .source' + SOURCEDETERMINE='echo "$?" | awk "-F " "{print \$$1;}" > .source' SOURCEFILE='`cat .source`' else AC_MSG_RESULT(yes)