]> git.ipfire.org Git - people/ms/ipfire-2.x.git/commitdiff
Config: Don't quote arguments in Makefiles
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 10 Jul 2024 17:19:21 +0000 (17:19 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 10 Jul 2024 17:19:21 +0000 (17:19 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
lfs/Config

index 279fbe9023eeeface409424eec8fb960505a5218..66c7958136d349ad4170b5fc1de00d302b12eba4 100644 (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