summaryrefslogtreecommitdiff
path: root/HOWTO/INSTALL-CROSS.md
diff options
context:
space:
mode:
Diffstat (limited to 'HOWTO/INSTALL-CROSS.md')
-rw-r--r--HOWTO/INSTALL-CROSS.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/HOWTO/INSTALL-CROSS.md b/HOWTO/INSTALL-CROSS.md
index f2494e6f1c..7366811a43 100644
--- a/HOWTO/INSTALL-CROSS.md
+++ b/HOWTO/INSTALL-CROSS.md
@@ -130,11 +130,11 @@ be built.
`<HOST>` is the host/target system that you build for. It does not have to be
a full `CPU-VENDOR-OS` triplet, but can be. The full canonicalized
`CPU-VENDOR-OS` triplet will be created by executing
-`$ERL_TOP/erts/autoconf/config.sub <HOST>`. If `config.sub` fails, you need
+`$ERL_TOP/make/autoconf/config.sub <HOST>`. If `config.sub` fails, you need
to be more specific.
`<BUILD>` should equal the `CPU-VENDOR-OS` triplet of the system that you
-build on. If you execute `$ERL_TOP/erts/autoconf/config.guess`, it will in
+build on. If you execute `$ERL_TOP/make/autoconf/config.guess`, it will in
most cases print the triplet you want to use for this.
The use of `<HOST>` and `<BUILD>` values that differ will trigger cross
@@ -344,15 +344,15 @@ cross compilation using `$ERL_TOP/otp_build configure`.
`--build=$erl_xcomp_build` argument to the `configure` script. It does
not have to be a full `CPU-VENDOR-OS` triplet, but can be. The full
`CPU-VENDOR-OS` triplet will be created by
- `$ERL_TOP/erts/autoconf/config.sub $erl_xcomp_build`. If set to `guess`,
+ `$ERL_TOP/make/autoconf/config.sub $erl_xcomp_build`. If set to `guess`,
the build system will be guessed using
- `$ERL_TOP/erts/autoconf/config.guess`.
+ `$ERL_TOP/make/autoconf/config.guess`.
* `erl_xcomp_host` - Cross host/target system to build for. This value will
be passed as `--host=$erl_xcomp_host` argument to the `configure` script.
It does not have to be a full `CPU-VENDOR-OS` triplet, but can be. The
full `CPU-VENDOR-OS` triplet will be created by
- `$ERL_TOP/erts/autoconf/config.sub $erl_xcomp_host`.
+ `$ERL_TOP/make/autoconf/config.sub $erl_xcomp_host`.
* `erl_xcomp_configure_flags` - Extra configure flags to pass to the
`configure` script.