mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-30 01:28:53 +00:00
2d6ecbda6b
Fixes #938. Signed-off-by: Alexey Neyman <stilor@att.net>
14 lines
229 B
Bash
Executable File
14 lines
229 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}"
|
|
./bootstrap
|
|
./configure --enable-local
|
|
make dist-create-release
|