[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: gEDA-user: Building from sources



> I think I found the problem.  configure.ac has these lines for testing for 
> noweb:
> 
> 	# search for notangle
> 	AC_PATH_PROG(NOTANGLE, notangle, no, ${PATH})
> 	cfiles=`\ls -1 src/libgeda.c 2> /dev/null`
> 	exit_status=$?
> 
> 	if test "$NOTANGLE" = "no" -a "$exit_status" = "1"; then
>  
> But when I put an echo in this section, $exit_status = 2.  So I changed the 
> test to:
> 
> 	if test "$NOTANGLE" = "no" -a "$exit_status" != "0"; then
> 
> in configure.ac for libgeda and in gscheme.  Now when I run 'make config' I 
> see on the screen:
> 
> 	checking for notangle... no
> 	** Cannot find notangle (part of noweb) : using notangle_guile instead **

Wow!  That's a new one!  

I'll make it a point to check this fix into CVS tomorrow.

Thanks, Daniel!

Stuart