On 11/3/06, Bryan Ischo <[EMAIL PROTECTED]> wrote:
> On 11/2/06, Andrew (Cheng-Liang) Hou <[EMAIL PROTECTED]> wrote: >> >> >> Hi, >> >> Can I use ifeq/ifneq in define block? >> The example like as: [...] > Yes. Try the below with 3.81. [...] Is this new behavior in GNU Make 3.81?
No, this works with GNU Make 3.80 as well. I didn't test others. I have gotten used to using $(info) since I have switched to 3.81 so I didn't think twice about it. If you change these lines $(info x = "$(x)") $(info y = "$(y)") $(info z = "$(z)") to $(warning x = "$(x)") $(warning y = "$(y)") $(warning z = "$(z)") You'll be able to test with earlier versions of GNU Make. Ken _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
