1
0
mirror of synced 2026-03-10 12:18:17 +00:00

2006-03-11 21:11:56 by steve

Make sure we always use ${prefix} not $prefix as a stylistic change
This commit is contained in:
steve
2006-03-11 21:11:56 +00:00
parent 9058f2f677
commit e2ba4f42d0
2 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -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