This is an automated email from the git hooks/post-receive script.

guillem pushed a commit to branch main
in repository dpkg.

View the commit online:
https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=bb01e59d881655bdb5046b318b2a99a29fb899ea

commit bb01e59d881655bdb5046b318b2a99a29fb899ea
Author: Nicolas Boulenguez <nico...@debian.org>
AuthorDate: Wed Apr 10 00:27:16 2024 +0200

    test: Replace double quotes with single quote in shell recipes
    
    This escapes more characters for the shell, and makes the intent of
    the dollar character more explicit.
    
    Signed-off-by: Guillem Jover <guil...@debian.org>
---
 scripts/t/mk/architecture.mk | 2 +-
 scripts/t/mk/buildflags.mk   | 2 +-
 scripts/t/mk/buildtools.mk   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/scripts/t/mk/architecture.mk b/scripts/t/mk/architecture.mk
index d15cdf603..bbfef5a30 100644
--- a/scripts/t/mk/architecture.mk
+++ b/scripts/t/mk/architecture.mk
@@ -19,4 +19,4 @@ loop_targets := $(foreach machine,BUILD HOST TARGET,\
 test: $(loop_targets)
 
 $(loop_targets):
-       test "$($@)" = "$(TEST_$@)"
+       test '$($@)' = '$(TEST_$@)'
diff --git a/scripts/t/mk/buildflags.mk b/scripts/t/mk/buildflags.mk
index 3289a7557..042ba816f 100644
--- a/scripts/t/mk/buildflags.mk
+++ b/scripts/t/mk/buildflags.mk
@@ -23,4 +23,4 @@ loop_targets := $(vars) $(vars:=_FOR_BUILD)
 test: $(loop_targets)
 
 $(loop_targets):
-       test "$($@)" = "$(TEST_$@)"
+       test '$($@)' = '$(TEST_$@)'
diff --git a/scripts/t/mk/buildtools.mk b/scripts/t/mk/buildtools.mk
index c104ef62e..2b935ebb1 100644
--- a/scripts/t/mk/buildtools.mk
+++ b/scripts/t/mk/buildtools.mk
@@ -22,4 +22,4 @@ loop_targets := $(tools) $(tools:=_FOR_BUILD)
 test: $(loop_targets)
 
 $(loop_targets):
-       test "$($@)" = "$(TEST_$@)"
+       test '$($@)' = '$(TEST_$@)'

-- 
Dpkg.Org's dpkg

Reply via email to