X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/b1e2869a68b5a80dcf305768ae8280ed8b8548c1..4b17cc52e1bc4810d1053a8e7d3465113ef01473:/package/alsa/Makefile diff --git a/package/alsa/Makefile b/package/alsa/Makefile index 8aa80e74a..8dc7b871a 100644 --- a/package/alsa/Makefile +++ b/package/alsa/Makefile @@ -16,9 +16,6 @@ PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=ftp://ftp.alsa-project.org/pub/driver/ PKG_MD5SUM:=4cff99be4b225e96663fbd61cabe3182 -PKG_CAT:=bzcat - -PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) include $(INCLUDE_DIR)/package.mk @@ -26,7 +23,6 @@ define KernelPackage/alsa SUBMENU:=Other modules DEPENDS:=@USB_SUPPORT @LINUX_2_4 TITLE:=Advanced Linux Sound Architecture - DESCRIPTION:= FILES:=$(PKG_BUILD_DIR)/modules/*.$(LINUX_KMOD_SUFFIX) AUTOLOAD=$(call AutoLoad,70,$(shell cat ./files/alsa.modules)) endef @@ -46,21 +42,19 @@ ifeq ($(LINUX_KARCH),mips) KERNEL_C_INCS:= -I$(LINUX_DIR)/include/asm-mips/mach-generic endif -define Build/Configure - (cd $(PKG_BUILD_DIR); \ - CFLAGS="$(KERNEL_C_INCS)" \ - ./configure \ - --with-build="$(LINUX_DIR)" \ - --with-kernel="$(LINUX_DIR)" \ - --with-cross="$(KERNEL_CROSS)" \ - --with-redhat=no \ - --with-suse=no \ - --with-oss=yes \ - --with-isapnp=no \ - --with-sequencer=no \ - --with-cards=usb-audio \ - ); -endef +CONFIGURE_VARS:= \ + CFLAGS="$(KERNEL_C_INCS)" + +CONFIGURE_ARGS:= \ + --with-build="$(LINUX_DIR)" \ + --with-kernel="$(LINUX_DIR)" \ + --with-cross="$(KERNEL_CROSS)" \ + --with-redhat=no \ + --with-suse=no \ + --with-oss=yes \ + --with-isapnp=no \ + --with-sequencer=no \ + --with-cards=usb-audio define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \