From d966d3b5b674098df89881f7806c728c65d35b13 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Thu, 6 Oct 2022 23:28:36 +0200 Subject: [PATCH] template.sh: fix installing targets The default value for $MKDIR was missing. --- src/scripts/tools/template.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scripts/tools/template.sh b/src/scripts/tools/template.sh index 13ba033..0bbbcdd 100755 --- a/src/scripts/tools/template.sh +++ b/src/scripts/tools/template.sh @@ -31,6 +31,7 @@ DATABASEDIR="../data" PROGNAME="template.sh" #executables DEBUG="_debug" +MKDIR="mkdir -p" INSTALL="install -m 0644" RM="rm -f" SED="sed"