diff options
author | Andy Wingo <wingo@pobox.com> | 2009-03-16 23:39:29 +0100 |
---|---|---|
committer | Andy Wingo <wingo@oblong.net> | 2009-03-17 16:47:55 +0100 |
commit | aeeff258c6502f9995aa97f3806a1069c4ddc7d1 (patch) | |
tree | 7d630ed1b04e69d0d12463a745aad13987ccddc5 /libguile/programs.c | |
parent | 8992a9e318eb7b86920133eba8aa64d5b6bf7bfd (diff) | |
download | guile-aeeff258c6502f9995aa97f3806a1069c4ddc7d1.tar.gz |
non-srcdir build fixes
* guile-tools.in: Fix the checks to account for non-srcdir builds.
* libguile/frames.c:
* libguile/objcodes.c:
* libguile/programs.c:
* libguile/instructions.c:
* libguile/vm.c: Fix snarf-includes to cope with non-srcdir builds.
* libguile/instructions.h:
* libguile/instructions.c: Fix the stubs inclusion to be non-srcdir
compatible.
* libguile/vm-expand.h (VM_DEFINE_INSTRUCTION): Fix some things so as not
to require the instructions.h defintitions, since we have the codes
already. Not important tho :)
* pre-inst-guile-env.in: Minor tweak that should have no effect.
* test-suite/standalone/Makefile.am (all-local): Remove a chmod +x step,
the configure.ac rule should do that if necessary.
Diffstat (limited to 'libguile/programs.c')
-rw-r--r-- | libguile/programs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/programs.c b/libguile/programs.c index 50b1b624b..1d6318c6c 100644 --- a/libguile/programs.c +++ b/libguile/programs.c @@ -376,7 +376,7 @@ scm_init_programs (void) scm_bootstrap_vm (); #ifndef SCM_MAGIC_SNARFER -#include "programs.x" +#include "libguile/programs.x" #endif } |