mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-18 20:37:56 +00:00
c8e39d6d29
Create configure.ac, an autoconf script to generate ./configure This will be needed by a subsequent patch to properly handle --build and --host, and more tests, when the kconfig stuff will be installed pre-built. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
8 lines
124 B
Bash
Executable File
8 lines
124 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
printf "Running autoconf...\n"
|
|
autoconf -Wall --force
|
|
|
|
printf "Done. You may now run:\n ./configure\n"
|