summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-06-18 00:55:44 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-06-18 00:55:44 (EDT)
commit858d30d8885a824ba55b2515b0b4a63612edce29 (patch)
tree09b724ef0d3be77432c20460a45ab1d7fdeaef54
parentd226b908c5974815e70289b51f173a807dea5e2c (diff)
configure.ac: Unquote ${TOUCH} in test
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index d43aaf2..87ebc57 100644
--- a/configure.ac
+++ b/configure.ac
@@ -136,7 +136,7 @@ AC_ARG_WITH(
)
AC_MSG_CHECKING([whether touch accepts -h])
ln -s conftest.none conftest.link
-if "${TOUCH}" -h conftest.link 1>/dev/null 2>&1; then
+if ${TOUCH} -h conftest.link 1>/dev/null 2>&1; then
if test -f conftest.none; then
AC_MSG_RESULT([no])
AC_SUBST([HAVE_TOUCH_NODEREF], [false])