Hello,

this patchlet fixes the install of the default.css (and other future .css files). Now we can run the html swing demo.

Ok?

Andreas


2006-08-31  Andreas Tobler  <[EMAIL PROTECTED]>

        * lib/Makefile.am (cssfiles): Add new rule to install css files.
Index: lib/Makefile.am
===================================================================
RCS file: /cvsroot/classpath/classpath/lib/Makefile.am,v
retrieving revision 1.126
diff -u -r1.126 Makefile.am
--- lib/Makefile.am     18 Aug 2006 19:45:03 -0000      1.126
+++ lib/Makefile.am     31 Aug 2006 18:44:29 -0000
@@ -7,6 +7,7 @@
 
 propertydirs :=  $(shell cd $(top_srcdir)/resource && $(FIND) gnu java javax 
org META-INF -type d ! -name CVS -print)
 propertyfiles :=  $(shell cd $(top_srcdir)/resource && $(FIND) gnu java javax 
org -name \*\.properties -print)
+cssfiles := $(shell cd $(top_srcdir) && $(FIND) gnu java javax org -name 
\*\.css -print)
 metafiles :=  $(shell cd $(top_srcdir)/resource && $(FIND) META-INF -name CVS 
-prune -o -name \*\.in -prune -o -type f -print)
 iconfiles :=  $(shell cd $(top_srcdir) && $(FIND) 
gnu/javax/swing/plaf/gtk/icons -name *.png -type f -print)
 
@@ -113,6 +114,9 @@
        @list='$(propertyfiles)'; for p in $$list; do \
          cp $(top_srcdir)/resource/$$p $$p; \
        done
+       @list='$(cssfiles)'; for p in $$list; do \
+         cp $(top_srcdir)/$$p $$p; \
+       done
        @list='$(metafiles)'; for p in $$list; do \
          cp $(top_srcdir)/resource/$$p $$p; \
        done

Reply via email to