After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 317970 - libvte-java removes Terminal.java file with make dist/clean
libvte-java removes Terminal.java file with make dist/clean
Status: VERIFIED FIXED
Product: java-gnome
Classification: Bindings
Component: VTE
mainline
Other Linux
: Normal normal
: ---
Assigned To: Ismael Juma
Ismael Juma
Depends on:
Blocks:
 
 
Reported: 2005-10-04 23:22 UTC by Remy Suen
Modified: 2009-08-15 18:40 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Remy Suen 2005-10-04 23:22:23 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') \
Comment 1 Ismael Juma 2005-10-09 14:37:17 UTC
Thanks for the patch. Applied to CVS HEAD.