aboutsummaryrefslogtreecommitdiff
blob: a41e4bda721b363f58a7ea8e5245b9fe742bbf4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# This is the config file for the catalyst-auto script. It should be pretty
# self-explanatory.

# This configuration does not set any builds of it's own, but rather removes
# everything EXCEPT stage4 builds.
for s in $SETS ; do
	var=SET_${s}_SPECS
	val=${!var}
	newval=
	for spec in $val ; do
		case $spec in
			*stage4*) newval="${newval} $spec" ;;
		esac
	done
	eval "export $var='${newval}'"
done

# vim:ft=sh: