There is one properties file needed for the X peers, which have to be included in the glibj.zip. I hacked the copy-vmresources.sh.in file to include it.

2006-07-18  Roman Kennke  <[EMAIL PROTECTED]>

        * lib/copy-vmresources.sh.in: Include properties from X peers.

/Roman
Index: lib/copy-vmresources.sh.in
===================================================================
RCS file: /cvsroot/classpath/classpath/lib/copy-vmresources.sh.in,v
retrieving revision 1.5
diff -u -1 -2 -r1.5 copy-vmresources.sh.in
--- lib/copy-vmresources.sh.in	4 Jul 2006 07:25:46 -0000	1.5
+++ lib/copy-vmresources.sh.in	18 Jul 2006 12:56:43 -0000
@@ -1,17 +1,17 @@
 #! @SHELL@
 # @configure_input@
 
 [EMAIL PROTECTED]@
-vmdirs=`echo "@vm_classes@" | sed 's%:% %g'`
+vmdirs=`echo "@vm_classes@ ${top_srcdir}/gnu/java/awt/peer/x" | sed 's%:% %g'`
 destMetaDir=`pwd`/META-INF
 destResDir=`pwd`
 
 for p in ${vmdirs}; do
 	if test -d $p/META-INF; then
 		(cd $p/META-INF; 
 		 dirs=`find . -name "CVS" -prune -o -type d -print`;
 		 for u in ${dirs}; do
 			 mkdir -p ${destMetaDir}/${u};
 		 done;
 		 files=`find . -name "CVS" -prune -o -name "*.in" -prune -o -type f -print`;
 		 for u in ${files}; do

Reply via email to