mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-23 14:42:26 +00:00
0a654319f9
Signed-off-by: Alexey Neyman <stilor@att.net>
14 lines
284 B
Bash
Executable File
14 lines
284 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
printf "Running autoconf...\n"
|
|
autoconf -Wall --force
|
|
|
|
printf "Generating kconfig component lists...\n"
|
|
./maintainer/gen-kconfig.sh
|
|
|
|
printf "Generating kconfig component versions...\n"
|
|
./maintainer/gen-versions.sh
|
|
|
|
printf "Done. You may now run:\n ./configure\n"
|