On Feb 28, 2010, at 20:22, Jose A. Ortega Ruiz wrote: > When building guile form git's HEAD off-tree, i get this error during make: > > ../../src/libguile/control.c:279:21: error: control.x: No such file or > directory
Ah, yeah, I meant to send email about that too. This patch should fix it, and bring it in line with the way the other source files are written: Use libguile/control.x explicitly. diff --git a/libguile/control.c b/libguile/control.c index 6a060f4..66962f9 100644 --- a/libguile/control.c +++ b/libguile/control.c @@ -276,7 +276,7 @@ SCM_DEFINE (scm_at_abort, "@abort", 2, 0, 0, (SCM tag, SCM args), void scm_init_control (void) { -#include "control.x" +#include "libguile/control.x" scm_sys_default_prompt_tag = scm_make_fluid (); scm_fluid_set_x (scm_sys_default_prompt_tag, scm_gensym (SCM_UNDEFINED)); scm_c_define ("%default-prompt-tag", scm_sys_default_prompt_tag);