summaryrefslogtreecommitdiff
path: root/hook-functions
diff options
context:
space:
mode:
authormaximilian attems <maks@debian.org>2010-05-28 17:15:59 -0700
committermaximilian attems <maks@debian.org>2010-05-28 17:15:59 -0700
commit81da804d1cd8deba5d2eb4d7180c060a01969368 (patch)
tree4ff3d3d44eea346e1888c0e33b0089905bb1b602 /hook-functions
parente20bb92433deadc137626f3bcd1e86b93d14b579 (diff)
downloadinitramfs-tools-81da804d1cd8deba5d2eb4d7180c060a01969368.tar.gz
initramfs-tools-81da804d1cd8deba5d2eb4d7180c060a01969368.zip
hook-functions: Fix copy_modules_dir()
overseen variable renaming. Signed-off-by: maximilian attems <maks@debian.org>
Diffstat (limited to 'hook-functions')
-rw-r--r--hook-functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/hook-functions b/hook-functions
index 744fc91..213a48a 100644
--- a/hook-functions
+++ b/hook-functions
@@ -174,7 +174,7 @@ copy_modules_dir()
shift
done
for kmod in $(find "${MODULESDIR}/${dir}" ${exclude:-} -name '*.ko' -print); do
- manual_add_modules $(basename ${x_mod} .ko)
+ manual_add_modules $(basename ${kmod} .ko)
done
}