index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
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 | |
parent | 703d43da1774f268df08d390a29855cfd6705ec2 (diff) |
-rwxr-xr-x | mkarchiso | 12 |
@@ -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}'" |