From d5824e8543e18246696eb01a28b5cdf027b16367 Mon Sep 17 00:00:00 2001 From: Ralf Wildenhues Date: Tue, 28 Dec 2004 12:54:18 +0000 Subject: [PATCH] * config/ltmain.m4sh (func_extract_archives): Not all shells grok `read -r' (unnecessary in this case). Reported by Ralf Menzel . --- ChangeLog | 4 ++++ config/ltmain.m4sh | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 7d96480ac..7fddd76b2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2004-12-28 Ralf Wildenhues + * config/ltmain.m4sh (func_extract_archives): Not all shells grok + `read -r' (unnecessary in this case). + Reported by Ralf Menzel . + * config/general.m4sh: New variable quote_scanset.. (func_quote_for_eval, func_quote_for_expand) ..use it to work around SunOS ksh `case' backslash-escaping bug: protect character class by diff --git a/config/ltmain.m4sh b/config/ltmain.m4sh index 1341a13fc..19b08ec16 100644 --- a/config/ltmain.m4sh +++ b/config/ltmain.m4sh @@ -982,7 +982,7 @@ func_extract_archives () { else func_warning "object name conflicts; renaming object files" func_warning "to ensure that they will not overwrite" - $AR t "$my_xabs" | sort | uniq -cd | while read -r count name + $AR t "$my_xabs" | sort | uniq -cd | while read count name do i=1 while test "$i" -le "$count" -- 2.47.2