diff options
author | Simo Leone <simo@archlinux.org> | 2007-10-09 03:40:20 -0500 |
---|---|---|
committer | Dan McGee <dpmcgee@gmail.com> | 2007-10-09 20:59:27 -0500 |
commit | 9e3ff6cd612a278f4c3a63aaaa727eb04113425e (patch) | |
tree | 9b72beb03c164e05772ec3143afcd0af3dcc44fc /mkarchiso | |
parent | 703d43da1774f268df08d390a29855cfd6705ec2 (diff) | |
download | archiso32-9e3ff6cd612a278f4c3a63aaaa727eb04113425e.tar.xz |
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>
Diffstat (limited to 'mkarchiso')
-rwxr-xr-x | mkarchiso | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -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}'" |