Steve Pribyl <[EMAIL PROTECTED]> writes: > I am trying to build an application using GCJ. > GCJ creates file with "$" in the name. The causes all kinds of problems > when trying to compile *.class files and then putting the resulting *.o > in to a *.a.
What kinds of problems? > Any suggestions on how to cope with this without rewriting all > the automatic rules? If by "all kinds of problems" you mean the shell eats your $, then the answer is yes: just find a shell that doesn't treat $ in this way. Though I think fixing implicit rules will be easier. > GCJ_BOOT_JAVA_PARTS=$(shell find ../com -name "*.class") GCJ_BOOT_JAVA_PARTS := $(shell find ../com -name "*.class") -boris _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
