From e2ba4f42d0f74a5c514d321d58b09aa25e2468ff Mon Sep 17 00:00:00 2001 From: steve Date: Sat, 11 Mar 2006 21:11:56 +0000 Subject: [PATCH] 2006-03-11 21:11:56 by steve Make sure we always use ${prefix} not $prefix as a stylistic change --- etc/hook.d/80-install-modules | 4 ++-- etc/hook.d/99-clean-image | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/etc/hook.d/80-install-modules b/etc/hook.d/80-install-modules index 2166836..1c5a8d6 100755 --- a/etc/hook.d/80-install-modules +++ b/etc/hook.d/80-install-modules @@ -9,7 +9,7 @@ # # Steve # -- -# $Id: 80-install-modules,v 1.4 2006-01-08 01:53:33 steve Exp $ +# $Id: 80-install-modules,v 1.5 2006-03-11 21:11:56 steve Exp $ @@ -28,4 +28,4 @@ cp -R /lib/modules/*/ ${prefix}/lib/modules # # Now install the 'module-init-tools'. # -DEBIAN_FRONTEND=noninteractive chroot $prefix /usr/bin/apt-get --yes --force-yes install module-init-tools +DEBIAN_FRONTEND=noninteractive chroot ${prefix} /usr/bin/apt-get --yes --force-yes install module-init-tools diff --git a/etc/hook.d/99-clean-image b/etc/hook.d/99-clean-image index 9210b84..2ffc999 100755 --- a/etc/hook.d/99-clean-image +++ b/etc/hook.d/99-clean-image @@ -5,10 +5,10 @@ # # Steve # -- -# $Id: 99-clean-image,v 1.4 2006-01-08 01:53:33 steve Exp $ +# $Id: 99-clean-image,v 1.5 2006-03-11 21:11:56 steve Exp $ prefix=$1 -chroot $prefix /usr/bin/apt-get clean +chroot ${prefix} /usr/bin/apt-get clean