From 9f2da4b924b49577fb509a2b7eb976c99fd2d5aa Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Tue, 30 Jan 2024 00:14:21 -0500 Subject: [PATCH] Update git submodules * Update liberasurecode from branch 'master' to 46f237a7e0be32ccd991f604dccd302cb591cd60 - configure: use more idiomatic test command The autoconf manual warns against using the posix shell command `[ ... ]`: > The `test` program is the way to perform many file and string tests. It > is often invoked by the alternate name `[`, but using that name in > Autoconf code is asking for trouble since it is an M4 quote character. Using `[ foo = bar ]` is evaluated as `foo = bar` with m4-quoting resolved. Here, we used `[[ foo = bar ]]` instead, which superficially looks like a bashism, but is actually an m4 quote escape that resolves to `[ foo = bar ]`. Avoid the confusion by using the configure.ac standard for spelling `test`. Change-Id: I31dfa6ab4abb181159a4364900e6da24c929705f --- liberasurecode | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liberasurecode b/liberasurecode index b9a8a5b0b8..46f237a7e0 160000 --- a/liberasurecode +++ b/liberasurecode @@ -1 +1 @@ -Subproject commit b9a8a5b0b8249ca63a785f092bdbb0e0402119fb +Subproject commit 46f237a7e0be32ccd991f604dccd302cb591cd60