mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-23 06:32:23 +00:00
715d6376bf
Signed-off-by: Alexey Neyman <stilor@att.net>
11 lines
133 B
Bash
Executable File
11 lines
133 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
cd
|
|
rm -rf bld-ctng
|
|
mkdir bld-ctng
|
|
cd bld-ctng
|
|
/crosstool-ng/configure --prefix=$HOME/inst-ctng
|
|
make
|
|
make install
|