diff options
author | Nicolas Thill <nico@openwrt.org> | 2006-01-17 13:26:00 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2006-01-17 13:26:00 +0000 |
commit | b1a2c6e7f8af0abf4c3b578de5a42629349b8438 (patch) | |
tree | f5189a34c3918dd13f186ab378a62a4958db26de | |
parent | 99c2c9f5657fa7bf0d787d4bd8a6b23124cfb491 (diff) | |
download | mtk-20170518-b1a2c6e7f8af0abf4c3b578de5a42629349b8438.zip mtk-20170518-b1a2c6e7f8af0abf4c3b578de5a42629349b8438.tar.gz mtk-20170518-b1a2c6e7f8af0abf4c3b578de5a42629349b8438.tar.bz2 |
fix alsa build on x86 (closes: #201)
SVN-Revision: 3001
-rw-r--r-- | openwrt/target/linux/package/alsa/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/target/linux/package/alsa/Makefile b/openwrt/target/linux/package/alsa/Makefile index dd74387..11b12ca 100644 --- a/openwrt/target/linux/package/alsa/Makefile +++ b/openwrt/target/linux/package/alsa/Makefile @@ -17,7 +17,7 @@ PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) include $(TOPDIR)/package/rules.mk ifeq ($(LINUX_KARCH),i386) -KERNEL_C_INCS:= -I$(LINUX_DIR)/include/asm-i386/mach-generic +KERNEL_C_INCS:= -I$(LINUX_DIR)/include/asm-i386/mach-generic -I$(LINUX_DIR)/include/asm-i386/mach-default KERNEL_C_OPTS:= -Os -mpreferred-stack-boundary=2 -march=i486 -fno-unit-at-a-time endif ifeq ($(LINUX_KARCH),mips) |