summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRene Engelhard <rene@debian.org>2018-03-18 20:36:45 +0100
committerRene Engelhard <rene@debian.org>2018-03-18 20:36:45 +0100
commitbc358d39ac985914160e8aaa23b29469470c032b (patch)
tree71120a3c86103073a73b4434591c0532b7a6d6b3
parent16f84d79ad209a4a6e033880d3059810c37e73c0 (diff)
this is sh, not make...
Change-Id: I15056272f254e8c993c143274eea1bb7f1a28cb7
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index ff011fbdd57e..af94d2bdbc13 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10362,8 +10362,8 @@ elif test "$_os" = "Linux" -o "$_os" = "Darwin" -o "$_os" = "WINNT" ; then
AC_MSG_RESULT([yes])
AC_PATH_PROG(GPGCONF, gpgconf)
AC_MSG_CHECKING([for gpgconf --create-socketdir... ])
- if $(GPGCONF) --dump-options > /dev/null ; then
- if $(GPGCONF) --dump-options | grep -q create-socketdir ; then
+ if $GPGCONF --dump-options > /dev/null ; then
+ if $GPGCONF --dump-options | grep -q create-socketdir ; then
AC_MSG_RESULT([yes])
AC_DEFINE([HAVE_GPGCONF_SOCKETDIR])
else