+2005-02-12 Bruno Haible <bruno@clisp.org>
+
+ * lang-clisp: Use only the first line of "clisp --version"'s output.
+ Needed to avoid /bin/sh limitations on HP-UX 10.
+
2005-02-08 Bruno Haible <bruno@clisp.org>
* Makefile.am (LDADD_yes): Remove INTL_MACOSX_LIBS.
# can deal with floating-point numbers.
(clisp --version) >/dev/null 2>/dev/null \
|| { rm -fr $tmpfiles; exit 77; }
-version=`clisp --version | sed -e 's/^[^0-9]*//'`
+version=`clisp --version | sed -n -e 1p | sed -e 's/^[^0-9]*//'`
case $version in
19* | 20*) # older than 2.25
rm -fr $tmpfiles; exit 77;;