Re: [Exim] Re: Patch to allow stripping of binaries

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Jim Knoble
Fecha:  
A: exim-users
Asunto: Re: [Exim] Re: Patch to allow stripping of binaries
Circa 2001-Jun-11 14:42:53 +0100 dixit Philip Hazel:

: On Mon, 11 Jun 2001, Sheldon Hearn wrote:
: > +    if [ x"$(STRIP_COMMAND)" != x"" ]; then \
: 
: Nobody has ever been able to explain to me why they use that paradigm,
: instead of just
: 
:         if [ "$(STRIP_COMMAND)" != "" ]; then \


The real question is rather: Why don't you use

        if [ -n "$(STRIP_COMMAND)" ]; then \


instead?

--
jim knoble | jmknoble@??? | http://www.jmknoble.cx/
(GnuPG fingerprint: 31C4:8AAC:F24E:A70C:4000::BBF4:289F:EAA8:1381:1491)