Config: Don't quote arguments in Makefiles

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2024-07-10 17:19:21 +00:00
parent c166e83f1d
commit 18a4a1f27b

View File

@@ -392,8 +392,8 @@ __COMPRESS = \
--verbose --verbose \
--use-compress-program="$(3)" \
$(TAR_OPTIONS) \
--directory="$(1)" \
--file="$(2)" \
--directory=$(1) \
--file=$(2) \
.
COMPRESS_XZ = $(call __COMPRESS,$(1),$(2),xz $(XZ_OPT))
@@ -407,8 +407,8 @@ define CREATE_PACKAGE
--format=pax \
--no-acls \
--no-xattrs \
--directory="$(1)" \
--file="$(2)" \
--directory=$(1) \
--file=$(2) \
--transform="s@^\./@@" \
.
endef