GNOME Bugzilla – Bug 317970
libvte-java removes Terminal.java file with make dist/clean
Last modified: 2009-08-15 18:40:50 UTC
The newest updates made to libvte-java deletes Terminal.java when using make clean or make distclean as Makefile.am has not been edited completely to reflect the new changes added by using Config.java.in instead of Terminal.java.in. This creates an annoyance as the user would have to download/extract Terminal.java (from a tarball) again. I've simply appended the Makefile.am diff output below for the sake of simplicity. Index: Makefile.am =================================================================== RCS file: /cvs/gnome/libvte-java/Makefile.am,v retrieving revision 1.7 diff -u -r1.7 Makefile.am --- Makefile.am 4 Oct 2005 00:15:02 -0000 1.7 +++ Makefile.am 4 Oct 2005 23:03:47 -0000 @@ -25,7 +25,7 @@ examples = doc/examples/vte -example_fiels = \ +example_files = \ doc/examples/vte/GtkTerminalExample.java \ doc/examples/runExample.sh.in @@ -143,7 +143,7 @@ DISTCLEANFILES = \ vte-java.pc \ doc/examples/runExample.sh \ - src/java/org/gnu/gnomevte/Terminal.java \ + src/java/org/gnu/gnomevte/Config.java \ $(srcdir)/Makefile.in \ $(srcdir)/aclocal.m4 \ $(srcdir)/compile \ @@ -157,7 +157,7 @@ CLEANFILES = \ doc-stamp \ - src/java/org/gnu/gnomevte/Terminal.class \ + src/java/org/gnu/gnomevte/Config.java \ $(all_vte_jar_class_files) \ $(vte_javadoc_html_files) \ $(shell find doc -name '*.html') \
Thanks for the patch. Applied to CVS HEAD.