aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbootstrap.sh4
-rw-r--r--doc/manual/src/contributing/hacking.md6
-rw-r--r--doc/manual/src/installation/building-source.md2
-rw-r--r--flake.nix1
4 files changed, 4 insertions, 9 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
deleted file mode 100755
index e3e259351..000000000
--- a/bootstrap.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#! /bin/sh -e
-rm -f aclocal.m4
-mkdir -p config
-exec autoreconf -vfi
diff --git a/doc/manual/src/contributing/hacking.md b/doc/manual/src/contributing/hacking.md
index 4b0a3a3e5..442a00c61 100644
--- a/doc/manual/src/contributing/hacking.md
+++ b/doc/manual/src/contributing/hacking.md
@@ -42,8 +42,8 @@ $ nix develop .#native-clang11StdenvPackages
To build Nix itself in this shell:
```console
-[nix-shell]$ ./bootstrap.sh
-[nix-shell]$ ./configure $configureFlags --prefix=$(pwd)/outputs/out
+[nix-shell]$ autoreconfPhase
+[nix-shell]$ configurePhase
[nix-shell]$ make -j $NIX_BUILD_CORES
```
@@ -86,7 +86,7 @@ $ nix-shell --attr devShells.x86_64-linux.native-clang11StdenvPackages
To build Nix itself in this shell:
```console
-[nix-shell]$ ./bootstrap.sh
+[nix-shell]$ autoreconfPhase
[nix-shell]$ ./configure $configureFlags --prefix=$(pwd)/outputs/out
[nix-shell]$ make -j $NIX_BUILD_CORES
```
diff --git a/doc/manual/src/installation/building-source.md b/doc/manual/src/installation/building-source.md
index ed1efffd8..7dad9805a 100644
--- a/doc/manual/src/installation/building-source.md
+++ b/doc/manual/src/installation/building-source.md
@@ -3,7 +3,7 @@
After cloning Nix's Git repository, issue the following commands:
```console
-$ ./bootstrap.sh
+$ autoreconf -vfi
$ ./configure options...
$ make
$ make install
diff --git a/flake.nix b/flake.nix
index bc14941fd..a22964023 100644
--- a/flake.nix
+++ b/flake.nix
@@ -61,7 +61,6 @@
configureFiles = fileset.unions [
./.version
- ./bootstrap.sh
./configure.ac
./m4
# TODO: do we really need README.md? It doesn't seem used in the build.