1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00

[configure.ac] bashism. Refs #285

This commit is contained in:
Witold Filipczyk 2024-01-27 09:08:00 +01:00
parent 6800e96f72
commit 27c03014f7

View File

@ -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