summaryrefslogtreecommitdiff
path: root/meta/uninstalled-env.in
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2022-02-01 12:13:13 +0100
committerAndy Wingo <wingo@pobox.com>2022-02-01 14:50:40 +0100
commit9b9149a5bf6206c9f01bcc59c9d297364a6c1ccf (patch)
tree55697946d0fa879eab9ce347e631cd711482f274 /meta/uninstalled-env.in
parent6ed66f42cbd492df88ffd35a7406a9d7065b0447 (diff)
downloadguile-9b9149a5bf6206c9f01bcc59c9d297364a6c1ccf.tar.gz
Rework bootstrap to be reproducible
* configure.ac: * Makefile.am (SUBDIRS): Replace bootstrap/ with stage0, stage1, and stage2. * am/bootstrap.am: Include all files and all rules. * meta/build-env.in (GUILE_AUTO_COMPILE): Always turn off auto-compilation. Take a GUILE_BOOTSTRAP_STAGE argument, which can be stage0, stage1, stage2, or unset. Adapt the load-compiled path accordingly. * meta/uninstalled-env.in: Include .go files from stage2. * module/Makefile.am: Rework to use boostrap.am. * module/system/base/optimize.scm (available-optimizations): Punt the inlinable-exports machinery to -O2. * stage0/Makefile.am: * stage1/Makefile.am: * stage2/Makefile.am: New files.
Diffstat (limited to 'meta/uninstalled-env.in')
-rw-r--r--meta/uninstalled-env.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/uninstalled-env.in b/meta/uninstalled-env.in
index ed932d0cb..2531e25cb 100644
--- a/meta/uninstalled-env.in
+++ b/meta/uninstalled-env.in
@@ -1,6 +1,6 @@
#!/bin/sh
-# Copyright (C) 2003, 2006, 2008, 2009, 2010, 2011, 2012, 2015, 2017 Free Software Foundation
+# Copyright (C) 2003, 2006, 2008, 2009, 2010, 2011, 2012, 2015, 2017, 2022 Free Software Foundation
#
# This file is part of GUILE.
#
@@ -80,7 +80,7 @@ then
fi
export GUILE_LOAD_PATH
- for d in "/prebuilt/@SCM_PREBUILT_BINARIES@" "/bootstrap" "/module" "/guile-readline"
+ for d in "/prebuilt/@SCM_PREBUILT_BINARIES@" "/stage2" "/guile-readline"
do
# This hair prevents double inclusion.
# The ":" prevents prefix aliasing.