mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-31 18:17:00 +00:00
bd60424e09
Also, build containers with --no-cache: distributions like ArchLinux retire their packages very quickly, need to always use up-to-date package databases. Signed-off-by: Alexey Neyman <stilor@att.net>
10 lines
150 B
Bash
Executable File
10 lines
150 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
cd
|
|
rm -rf bld-samples
|
|
mkdir bld-samples
|
|
cd bld-samples
|
|
export PATH=$HOME/inst-ctng/bin:$PATH
|
|
ct-ng build-all ${1+CT_SAMPLES="$*"}
|