summaryrefslogtreecommitdiffstats
path: root/meta/classes/module.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/module.bbclass')
-rw-r--r--meta/classes/module.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/module.bbclass b/meta/classes/module.bbclass
index d477caa065..c933d3226d 100644
--- a/meta/classes/module.bbclass
+++ b/meta/classes/module.bbclass
@@ -25,7 +25,7 @@ module_do_install() {
25 modules_install 25 modules_install
26} 26}
27 27
28pkg_postinst_append () { 28pkg_postinst_${PN}_append () {
29if [ -z "$D" ]; then 29if [ -z "$D" ]; then
30 depmod -a ${KERNEL_VERSION} 30 depmod -a ${KERNEL_VERSION}
31else 31else
@@ -33,7 +33,7 @@ else
33fi 33fi
34} 34}
35 35
36pkg_postrm_append () { 36pkg_postrm_${PN}_append () {
37if [ -z "$D" ]; then 37if [ -z "$D" ]; then
38 depmod -a ${KERNEL_VERSION} 38 depmod -a ${KERNEL_VERSION}
39else 39else