From 9e3ff6cd612a278f4c3a63aaaa727eb04113425e Mon Sep 17 00:00:00 2001 From: Simo Leone Date: Tue, 9 Oct 2007 03:40:20 -0500 Subject: 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 --- mkarchiso | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/mkarchiso b/mkarchiso index a9d72b9..e545eb6 100755 --- a/mkarchiso +++ b/mkarchiso @@ -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}'" -- cgit v1.2.3-54-g00ecf