[Mono-list] Mono/wrapper Makefile.am
Nick Drochak
ndrochak@gol.com
Fri, 7 Sep 2001 07:48:55 +0900
On cygwin this came up. mono/mono/wrapper/Makefile.am uses '+=' before '='
on CLEANFILES. Here is my patch, but I didn't want to check in in case it
messes up other platform builds:
Index: Makefile.am
===================================================================
RCS file: /cvs/public/mono/mono/wrapper/Makefile.am,v
retrieving revision 1.4
diff -r1.4 Makefile.am
30c30
< CLEANFILES += $(BUILT_SOURCES) lib*.a lib*.dll
---
> CLEANFILES = $(BUILT_SOURCES) lib*.a lib*.dll
Nick D.