mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-23 06:32:23 +00:00
9d7c783a93
... and add Mint 19 and CentOS 6. The latter currently fails in ctng's configure due to an old libtool; need to make libtool optional. Signed-off-by: Alexey Neyman <stilor@att.net>
11 lines
168 B
Bash
Executable File
11 lines
168 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
cd
|
|
rm -rf work/bld-ctng work/inst-ctng
|
|
mkdir work/bld-ctng
|
|
cd work/bld-ctng
|
|
/crosstool-ng/configure --prefix=$HOME/work/inst-ctng
|
|
make
|
|
make install
|