diff options
author | maximilian attems <maks@debian.org> | 2007-06-21 11:58:14 +0200 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2007-06-21 11:58:14 +0200 |
commit | 728d6fc95b28254b982395e73153c5c422c81768 (patch) | |
tree | c2b20ba8f9512346f15d8e437178ad006a851174 | |
parent | 879602b218973fc7a5f92874bbaf41ea818fae31 (diff) | |
download | initramfs-tools-728d6fc95b28254b982395e73153c5c422c81768.tar.gz initramfs-tools-728d6fc95b28254b982395e73153c5c422c81768.zip |
hook-functions: fix variable typo
-rw-r--r-- | debian/changelog | 3 | ||||
-rw-r--r-- | hook-functions | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index e1aa7c8..6a17083 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,13 +9,14 @@ initramfs-tools (0.89) unstable; urgency=low * minitramfs: Fall back to bootable default MODULES=most if unsupported MODULES setting is passed. Thanks Henning Sprang <henning_sprang@gmx.de> for report. (closes: #429144) + * hook-functions: Fix variable typo. Thanks Emanuele Rocca <ema@debian.org>. [ Joey Hess ] * mkinitramfs: Include libgcc_s.so.1 on arm since glibc always tries to load it for the SJLJ exception handling on that architecture. (closes: #426395) Thanks to Aurelien Jarno for ack and review. - -- maximilian attems <maks@debian.org> Thu, 21 Jun 2007 11:49:23 +0200 + -- maximilian attems <maks@debian.org> Thu, 21 Jun 2007 11:57:20 +0200 initramfs-tools (0.88) unstable; urgency=low diff --git a/hook-functions b/hook-functions index 1b38931..a133a0b 100644 --- a/hook-functions +++ b/hook-functions @@ -41,7 +41,7 @@ add_modules_from_file() # Add dependent modules + eventual firmware manual_add_modules() { - local man_x firmwares firmware + local mam_x firmwares firmware for mam_x in $(modprobe --set-version="${version}" --ignore-install \ --show-depends "${1}" 2>/dev/null | awk '/^insmod/ { print $2 }'); do |