From b4144dea463e071b87f357ebe71bc48e5b39c349 Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Sat, 4 Nov 2023 23:50:21 +0100 Subject: [PATCH] fix(build): Makefile dependency --- Makefile | 2 +- build/script/shlibln | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 8bfd7b191..a90deb523 100644 --- a/Makefile +++ b/Makefile @@ -81,7 +81,7 @@ all: libexecs tests samples INSTALLDIR = $(DESTDIR)$(POCO_PREFIX) COMPONENTS = Foundation Encodings XML JSON Util Net Crypto NetSSL_OpenSSL Data Data/SQLite Data/ODBC Data/MySQL Data/PostgreSQL ActiveRecord ActiveRecord/Compiler Zip PageCompiler PageCompiler/File2Page JWT CppParser PDF MongoDB Redis Prometheus -cppunit: +cppunit: Foundation-libexec $(MAKE) -C $(POCO_BASE)/CppUnit CppUnit-clean: diff --git a/build/script/shlibln b/build/script/shlibln index 2c9be40c7..4f3745a04 100755 --- a/build/script/shlibln +++ b/build/script/shlibln @@ -13,11 +13,11 @@ fi source="$1" target="$2" -sourcedir=`dirname "$source"` -targetdir=`dirname "$target"` +sourcedir=$(dirname "$source") +targetdir=$(dirname "$target") if [ "$sourcedir" = "$targetdir" ] ; then - source=`basename $source` + source=$(basename "$source") fi