Don't special case 'base' package list

No need to, can be included in any list of
installed packages, base is just a convention.

Signed-off-by: Simo Leone <simo@archlinux.org>
This commit is contained in:
Simo Leone 2007-10-09 03:40:20 -05:00 committed by Dan McGee
parent 703d43da17
commit 9e3ff6cd61

View File

@ -113,14 +113,10 @@ if [ "${command_name}" = "install" -o "${command_name}" = "all" ]; then
mkdir -p "${isoroot}"
mkdir -p "${instroot}"
echo "Installing 'base' packages..."
install_pkgfile "${PKGDIR}/base.packages"
echo "Installing custom packages..."
for fil in ${package_files}; do
#TODO search for file if not absolute...
echo " Installing packages from file '$fil'"
install_pkgfile "${fil}"
echo "Installing packages..."
for pkgfile in ${package_files}; do
echo " Installing packages from '$pkgfile'"
install_pkgfile "${PKGDIR}/$pkgfile.packages"
done
for pkg in ${additional_packages}; do
echo " Installing package '${pkg}'"