diff options
author | Andy Wingo <wingo@pobox.com> | 2015-10-25 11:46:58 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2015-10-25 11:46:58 +0000 |
commit | 4339cb9fc11ccdb3f1c660cbfebbf7e2a7c108cb (patch) | |
tree | 4c5f3c79c31796a4da1103750904389eda7ba5cf /meta | |
parent | 95ac2204d9084a01677fff9eb2669c495bd07d3d (diff) |
Fix uninstalled-env bug that preferred bootstrap/ to module/
* meta/uninstalled-env.in (top_builddir): Whoops! We were
preferring bootstrap/ unoptimized .go files to module/ optimized .go
files. Fix!
Diffstat (limited to 'meta')
-rw-r--r-- | meta/uninstalled-env.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/uninstalled-env.in b/meta/uninstalled-env.in index f9f0dc78d..3bcde8eb9 100644 --- a/meta/uninstalled-env.in +++ b/meta/uninstalled-env.in @@ -84,7 +84,7 @@ then then GUILE_LOAD_COMPILED_PATH="${top_builddir}/module:${top_builddir}/guile-readline" else - for d in "/module" "/bootstrap" "/guile-readline" + for d in "/bootstrap" "/module" "/guile-readline" do # This hair prevents double inclusion. # The ":" prevents prefix aliasing. |