Hi, Marc Girod <marc.gi...@gmail.com> skribis:
> I had to fix the sed command in the meta/Makefile (1782-1785, generated): > > | $(SED) -e "s,@pkgconfigdir@,$(pkgconfigdir),g" \ > -e "s,@""PKG_CONFIG@,$(PKG_CONFIG),g" \ > -e "s,@installed_guile@,$$guile,g" \ > > The original command (maybe OK for GNU sed?) would specify multiple > s/// patterns in the same argument, separated with ';', which fails on > Solaris sed. > This is in the guil-config rule, in Makefile.in lines 1782-1784: Thanks, fixed in commit 570fdec. > I also have an issue with install-exec-hook in meta/Makefile: I have > to 'echo' instead of 'echo -n' in order to set the variables 'guild' > and 'guild-tools'. Do you mean that ‘echo -n’ does not work on your system? ‘configure’ determined ‘-n’ as the value of ECHO_N, which means that it should work. > Finally, I get a failure in make check: > > make[3]: Entering directory `/proj/vobadm100/tmp/guile-2.0.7' > Testing /proj/vobadm100/tmp/guile-2.0.7/meta/guile ... > with GUILE_LOAD_PATH=/proj/vobadm100/tmp/guile-2.0.7/test-suite > /bin/bash: line 1: 25311 Segmentation Fault > CHARSETALIASDIR="/proj/vobadm100/tmp/guile-2.0.7/lib" ${dir}$tst > FAIL: check-guile > ================================== > 1 of 1 test failed > Please report to bug-guile@gnu.org > ================================== What version of libgc do you use? Was it built with --enable-threads? Was Guile configured with --with-threads? If yes, can you try building both without thread support? Thanks, Ludo’.