From 27c03014f7a36c5810924118bcdc80225932898f Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Sat, 27 Jan 2024 09:08:00 +0100 Subject: [PATCH] [configure.ac] bashism. Refs #285 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index d830b2d5..d4bec08d 100644 --- a/configure.ac +++ b/configure.ac @@ -727,7 +727,7 @@ if test "x$CONFIG_QUICKJS" = x; then CFLAGS="$CFLAGS $DB_LOCALSTORAGE_CFLAGS $XMLPLUSPLUS_CFLAGS $CURL_CFLAGS" QUICKJS_LIB="/usr/local/lib/quickjs/libquickjs.a" - for p in $(tr ':' '\n' <<< "$LIBRARY_PATH"); do + for p in $(echo "$LIBRARY_PATH" | tr ':' '\n'); do if test -f "$p/quickjs/libquickjs.a" ; then QUICKJS_LIB="$p/quickjs/libquickjs.a" break