mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
71d85c9e16
Signed-off-by: Alexey Neyman <stilor@att.net>
15 lines
245 B
Bash
Executable File
15 lines
245 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
# Go to the top-level
|
|
topdir=`git rev-parse --show-toplevel`
|
|
if [ -z "${topdir}" ]; then
|
|
do_abort "Not in the Git clone"
|
|
fi
|
|
cd "${topdir}"
|
|
git clean -fxdq
|
|
./bootstrap
|
|
./configure --enable-local
|
|
make dist-create-release
|