%% "Boris Wirtz" <[EMAIL PROTECTED]> 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 <[EMAIL PROTECTED]>          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


_______________________________________________
Bug-make mailing list
Bug-make@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-make

Reply via email to