Re: stability and testing
Patrick Bernaud <[email protected]>
| Newsgroups | gmane.lisp.guile.gtk |
|---|---|
| Message-ID | <[email protected]> |
Hi Jan, Jan Nieuwenhuizen writes: > [...] > + running automake -a -c... > atk/gnome/gw/Makefile.am:21: CLEANFILES must be set with `=' before using `+=' Only this one is an error. Other are 'only' warnings (you can filter them out by adding a '-Wnone' option to automake in autogen.sh line 93). Now to fix it change the line in atk/gnome/gw/Makefile.am to read: CLEANFILES = $(wildcard guile-gnome-gw-atk.*) atk.scm instead of CLEANFILES += $(wildcard guile-gnome-gw-atk.*) atk.scm It is likely a typo from a copy and paste from another Makefile (one with more than one module per package like gtk). HTH, Patrick