mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-01-17 02:10:01 +00:00
11 lines
133 B
Plaintext
11 lines
133 B
Plaintext
|
#!/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
|