From 336d7eef5a135e00ae9af14290d2506646636b88 Mon Sep 17 00:00:00 2001 From: Pavel Rochnyack Date: Wed, 29 Aug 2018 21:23:28 +0700 Subject: [PATCH] Fix Solaris builds Trying to fix error: ./build.sh: syntax error at line 78: `TOP_SRCDIR=$' unexpected --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index a1a67698..c0ccce3a 100755 --- a/build.sh +++ b/build.sh @@ -75,7 +75,7 @@ build_cygwin() : ${DATADIR:="${INSTALL_DIR}"} echo "Installing collectd to ${INSTALL_DIR}." - TOP_SRCDIR=$(pwd) + TOP_SRCDIR="$(pwd)" MINGW_ROOT="$(x86_64-w64-mingw32-gcc -print-sysroot)/mingw" export GNULIB_DIR="${TOP_SRCDIR}/gnulib/build/gllib" -- 2.11.0