From: Michael Tremer Date: Wed, 10 Jul 2024 17:19:21 +0000 (+0000) Subject: Config: Don't quote arguments in Makefiles X-Git-Tag: v2.29-core188~10^2~258 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=18a4a1f27b57b558394e6b1d38a5e1413a74ec32;p=ipfire-2.x.git Config: Don't quote arguments in Makefiles Signed-off-by: Michael Tremer --- diff --git a/lfs/Config b/lfs/Config index 279fbe9023..66c7958136 100644 --- a/lfs/Config +++ b/lfs/Config @@ -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