blob: e4818fa83565943991a9c92d6a269fb17b4c865e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
repo=util
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
DESC="The full set of utility programs available for xilinux"
|