Fix ARCH calculation for PowerPC in Linux 2.6.28 and newer

If $(KERNELPATH)/arch/ppc is missing, ARCH should be "powerpc", not
"ppc".  CONFIG_PPC_MERGE disappeared in Linux 2.6.28.


git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@3935 0192ed92-7a03-0410-a25b-9323aeb14dbd
This commit is contained in:
proski 2009-01-29 05:58:17 +00:00
parent 373a4b7e68
commit 94e68b9e49
1 changed files with 6 additions and 0 deletions

View File

@ -43,6 +43,12 @@ ARCH-y = $(ARCH)
endif
endif
ifeq (ppc,$(ARCH-y))
ifeq (,$(wildcard $(KERNELPATH)/arch/ppc))
ARCH-y = powerpc
endif
endif
# Don't allow ARCH to be overridden by a different value.
ifeq (,$(ARCH))
ARCH = $(ARCH-y)