1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

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!
This commit is contained in:
Andy Wingo 2015-10-25 11:46:58 +00:00
parent 95ac2204d9
commit 4339cb9fc1

View file

@ -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.