libtool-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: GNU Libtool 1.5.8 released.


From: Alexandre Duret-Lutz
Subject: Re: GNU Libtool 1.5.8 released.
Date: Thu, 12 Aug 2004 09:13:19 +0200

On Thu, Aug 12, 2004 at 01:13:34PM +0900, Peter O'Gorman wrote:
[...]
> +  ((test "X$CXX" = "Xg++" && `g++ -v >& /dev/null` ) ||
> +  (test "X$CXX" != "Xg++")))])
[...]
> +         ((test "X$CXX" = "Xg++" && `g++ -v >& /dev/null` ) ||
> +         (test "X$CXX" != "Xg++"))) ; then
[...]
> +    ((test "X$CXX" = "Xg++" && `g++ -v >& /dev/null` ) ||
> +    (test "X$CXX" != "Xg++"))) ; then
[...]

Better write `( (test' than `((test'.



File: autoconf.info,  Node: Parentheses

Parentheses in Shell Scripts
============================

Beware of two opening parentheses in a row, as some shell
implementations mishandle them.  For example, `pdksh' 5.2.14 misparses
the following code:

     if ((true) || false); then
       echo ok
     fi

To work around this problem, insert a space between the two opening
parentheses.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]