octave-maintainers
[Top][All Lists]
Advanced

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

Re: R: make install-lib


From: Judd Storrs
Subject: Re: R: make install-lib
Date: Sat, 9 May 2009 09:34:39 -0400

On Sat, May 9, 2009 at 1:00 AM, Marco Atzeri <address@hidden> wrote:


but STATIC_LIBS ad SHARED_LIBS are now "true" or "false"
so a

if $(STATIC_LIBS);

will be executed in any case.
Eventually shell command

"true" and "false" are valid shell commands with man pages that do what you would expect. If they weren't shell commands, you would get errors about the commands could not be found. i.e.

if true ; then echo run ; fi
if false ; then echo run ; fi
if foobar ; then echo run ; fi


--judd


reply via email to

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