aboutsummaryrefslogtreecommitdiff
path: root/util/pkgall
blob: d95eb4855639938b410a8f4e243d0725dca06127 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
#
#  PKGALL -- Install all available packages.


if [ -e ".repo_pkgs" ]; then
    p=`cat .repo_pkgs`
    for f in ${p[@]} ; do
	make $f
    done
fi

exit 0