Hi! 2007/2/22, John Graham-Cumming <[EMAIL PROTECTED]>:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1Perrog wrote: > A = `test .$module = .yes && echo .a || echo .b` There's no backtick operator in GNU Make. You should be doing: A := $(shell test .$module = .yes && echo .a || echo .b)
I didn't know until now backticks are invalid expressions. Thanks very much for the hint. _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
