mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-21 13:47:48 +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>
10 lines
223 B
Bash
Executable File
10 lines
223 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
cd
|
|
rm -rf work/bld-samples
|
|
mkdir -p work/bld-samples work/inst-xtools
|
|
cd work/bld-samples
|
|
export PATH=$HOME/work/inst-ctng/bin:$PATH
|
|
ct-ng build-all CT_PREFIX=$HOME/work/inst-xtools ${1+CT_SAMPLES="$*"}
|