From: Anders Kaseorg Date: Tue, 6 Dec 2016 15:53:40 +0000 (-0500) Subject: src/cf/roken.m4: Escape buildtool_roken correctly X-Git-Tag: upstream/1.8.0_pre1^2~4 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=85c7d31cf2dacdbcd8a053fdc3f66952e7126528;p=packages%2Fo%2Fopenafs.git src/cf/roken.m4: Escape buildtool_roken correctly Fixes these errors from configure: ./configure: line 32154: LDFLAGS_roken: command not found ./configure: line 32154: LIB_roken: command not found Change-Id: I63b9ade5c8f55948ea2a3f7ae023de4ed9f62341 Reviewed-on: https://gerrit.openafs.org/12472 Tested-by: BuildBot Reviewed-by: Benjamin Kaduk --- diff --git a/src/cf/roken.m4 b/src/cf/roken.m4 index 2766b4312..2c1262757 100644 --- a/src/cf/roken.m4 +++ b/src/cf/roken.m4 @@ -20,7 +20,7 @@ AC_DEFUN([_OPENAFS_ROKEN_PATHS], [ [AS_IF([test x"$roken_root" != x], [CPPFLAGS_roken="-I$roken_root/include"])]) LIB_roken="-lroken" - buildtool_roken="$(LDFLAGS_roken) $(LIB_roken)"]) + buildtool_roken="\$(LDFLAGS_roken) \$(LIB_roken)"]) dnl _OPENAFS_ROKEN_CHECK($action-if-found, dnl $action-if-not-found)