Makefile.in: Regenerate.

2007-05-03  Thomas Fitzsimmons  <fitzsim@redhat.com>

	https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=237304
	* Makefile.in: Regenerate.
	* scripts/makemake.tcl (scan_directory): Treat default.css as a
	property file.
	* classpath/javax/swing/text/html/default.css: Move to...
	* classpath/resource/javax/swing/text/html/default.css: New file.
	* classpath/javax/swing/text/html/HTMLEditorKit.java
	(getStyleSheet): Throw RuntimeException when style loading fails.
	* sources.am (property_files): Add
	classpath/resource/javax/swing/text/html/default.css.

From-SVN: r124387
This commit is contained in:
Thomas Fitzsimmons 2007-05-03 19:02:52 +00:00 committed by Thomas Fitzsimmons
parent 45b88fa2c4
commit 97797e00e7
6 changed files with 19 additions and 1 deletions

View file

@ -228,6 +228,9 @@ proc scan_directory {basedir subdir} {
# We assume there aren't any overrides.
lappend properties_files $basedir/$subdir/$file
}
} elseif {[string match *.css $file]} {
# Special case for default.css needed by javax.swing.text.html.
lappend properties_files $basedir/$subdir/$file
} elseif {[file isdirectory $file]} {
lappend subdirs $subdir/$file
} elseif {$subdir == "META-INF/services"} {