Skip to content

Commit

Permalink
fix(Makefile): ensure akms postinst hooks compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
mjholub committed Mar 5, 2023
1 parent d98018d commit 9cab18e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -662,7 +662,7 @@ EXTRA_CFLAGS += -DCONFIG_IOCTL_CFG80211 -DRTW_USE_CFG80211_STA_EVENT
SUBARCH := $(shell uname -m | sed -e "s/i.86/i386/; s/ppc/powerpc/; s/armv.l/arm/; s/aarch64/arm64/;")
ARCH ?= $(SUBARCH)
CROSS_COMPILE ?=
KVER ?= $(shell uname -r)
KVER ?= $(shell if [[ -n ${NEW_VERSION} && ${FLAVOR} ]]; then echo ${NEW_VERSION}-${FLAVOR}; else uname -r; fi)
KSRC := /lib/modules/$(KVER)/build
MODDESTDIR := /lib/modules/$(KVER)/kernel/drivers/net/wireless/
INSTALL_PREFIX :=
Expand Down

0 comments on commit 9cab18e

Please sign in to comment.