%% "Angel Tsankov" <[EMAIL PROTECTED]> writes:

  at> I figured it out:
  at> CANONIZE = $(subst ./,,$(1))

This might be dangerous.  Have you considered the differences in
behavior between using subst and patsubst here?  I think patsubst is
more likely to be what you want:

    $(patsubst ./%,%,$(1))

I can't visualize the whole thing with just this change, but if it works
for you that's good!

-- 
-------------------------------------------------------------------------------
 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


_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to