bug-make
[Top][All Lists]
Advanced

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

Re: GNU make 3.80 : conditionals and rules


From: Paul D. Smith
Subject: Re: GNU make 3.80 : conditionals and rules
Date: Tue, 26 Apr 2005 10:54:59 -0400

%% "Boris Wirtz" <address@hidden> writes:

  bw> I have a problem with make 3.80 when trying to define rules inside
  bw> conditionals.

  bw> ifeq (PASS,depend)

Ermm... this well never be true.  Maybe it's different in German but in
English the string "PASS" is never equal to the string "depend" :-)


Perhaps you meant:

    ifeq ($(PASS),depend)

?

-- 
-------------------------------------------------------------------------------
 Paul D. Smith <address@hidden>          Find some GNU make tips at:
 http://www.gnu.org                      http://make.paulandlesley.org
 "Please remain calm...I may be mad, but I am a professional." --Mad Scientist




reply via email to

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