install errors

Archie Cobbs archie at whistle.com
Tue Dec 14 14:46:40 PST 1999


Patrick Tullmann writes:
> > How fresh is that? 
> 
> About 1 hour old....

Snapshot or CVS update?  They are different I think.

> > But you may have to remove all .la files in your build tree before
> > his change takes effect.
> 
> If I do a 'make clean', then install works just fine.  However, if I
> change anything and rerun 'make install' I get the error.  Its most
> definetly the quotes being stripped off the regexp (sh -x told me so).

You're Makefile's should have e.g. the patch below.

If this doesn't fix it for you, then there's some other problem.

-Archie

___________________________________________________________________________
Archie Cobbs   *   Whistle Communications, Inc.  *   http://www.whistle.com

Index: libraries/clib/native/Makefile.am
===================================================================
RCS file: /cvs/kaffe/kaffe/libraries/clib/native/Makefile.am,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- Makefile.am	1999/10/09 19:56:40	1.14
+++ Makefile.am	1999/12/09 21:38:57	1.15
@@ -49,7 +49,7 @@
 UTIL_SRCS = \
 		Arrays.c
 
-libnative_la_LDFLAGS = $(KLIBFLAGS) -module -release $(KVER) -export-symbols-regex "^([Jj]ava|kaffe)_"
+libnative_la_LDFLAGS = $(KLIBFLAGS) -module -release $(KVER) -export-symbols-regex '^\([Jj]ava\|kaffe\)_'
 libnative_la_LIBADD = $(M_LIBS)
 libnative_la_SOURCES = $(IO_SRCS) $(LANG_SRCS) $(REFLECT_SRCS) $(TEXT_SRCS) $(TEST_SRCS) $(UTIL_SRCS)
 


More information about the kaffe mailing list