blob: 7f139cfa020b6dd20f1ca1393cc2b1268de5ccf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
repo=devel
MAKEDEPS=()
DEPS=()
for i in $(ls -1 $(echo $BUILD_FILE_PATH | rev | cut -d/ -f3- | rev)/$repo); do
name=$(basename -s .xibuild $i)
DEPS=(${DEPS[@]} $name)
done
DEPS=(${DEPS[@]} xibuild)
DESC="Packages needed for the xilinux build environment"
|