From 3a0851f6fab508b32523efcb0830dbe20e7261d9 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 10 Jul 2024 17:19:21 +0000 Subject: [PATCH] Config: Don't quote arguments in Makefiles Signed-off-by: Michael Tremer --- lfs/Config | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lfs/Config b/lfs/Config index 279fbe902..66c795813 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 -- 2.39.5