mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
105e4b59b7
Instead, prepare the files as a part of bootstrap and install them. This avoids rebuilding these files in each working directory; they don't change anyway as they are generated from the same installed source. Signed-off-by: Alexey Neyman <stilor@att.net>
11 lines
192 B
Bash
Executable File
11 lines
192 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
printf "Running autoconf...\n"
|
|
autoconf -Wall --force
|
|
|
|
printf "Generating kconfig files...\n"
|
|
./maintainer/gen-kconfig.sh
|
|
|
|
printf "Done. You may now run:\n ./configure\n"
|