On Sun, Jul 10, 2005 at 03:48:35AM -0700, Andy Tai wrote: > [ ... ] > cc -o ,es -g ,es.c > ./,es > exit-status.h > rm ,es ,es.c > rm: cannot remove `,es': No such file or directory > make[2]: *** [exit-status.h] Error 1 > make[2]: Leaving directory > `/cygdrive/c/users/atai/work/revc/revc-0.0x0/build/hackerlab/os' > .....
The same thing happens for somewhere in the tla build if I remember correctly. Cygwin binaries have .exe suffix, so 'rm ,es' is going to fail. A quick workaround is to put a - before the rm to tell make not to care, or comment that line out entirely. -- Matt _______________________________________________ Gnu-arch-users mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gnu-arch-users GNU arch home page: http://savannah.gnu.org/projects/gnu-arch/
