mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
8 lines
124 B
Plaintext
8 lines
124 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
printf "Running autoconf...\n"
|
||
|
autoconf -Wall --force
|
||
|
|
||
|
printf "Done. You may now run:\n ./configure\n"
|