diff options
author | Nicolas Thill <nico@openwrt.org> | 2015-02-08 19:34:53 +0100 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2015-02-08 19:34:53 +0100 |
commit | f5c4816f1023171ce979b15fe40ffcdc6ff42b05 (patch) | |
tree | d5b7f4c85008273f100c87fa4ab1fad55660b4ed | |
parent | 404c37b23841a216d06078551b8f0ace71fde166 (diff) |
shairplay: fix PKG_FIXUP
PKG_FIXUP should be defined before including package.mk
Signed-off-by: Nicolas Thill <nico@openwrt.org>
-rw-r--r-- | sound/shairplay/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/shairplay/Makefile b/sound/shairplay/Makefile index 408f383bf..74a3fd781 100644 --- a/sound/shairplay/Makefile +++ b/sound/shairplay/Makefile @@ -21,10 +21,10 @@ PKG_MAINTAINER:=Álvaro Fernández Rojas <noltari@gmail.com> PKG_LICENSE:=MIT PKG_LICENSE_FILES:=LICENSE -include $(INCLUDE_DIR)/package.mk - PKG_FIXUP:=autoreconf +include $(INCLUDE_DIR)/package.mk + define Package/shairplay SECTION:=sound CATEGORY:=Sound |