mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-02-21 01:21:27 +00:00
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"
|