diff --git a/openwrt/README.md b/openwrt/README.md index 4449596..8a87953 100644 --- a/openwrt/README.md +++ b/openwrt/README.md @@ -104,13 +104,13 @@ $ ./scripts/feeds install -a #### Build In `make menuconfig` navigate to `Sound/snapcast` and select `Snapclient` -Also make sure to select your device in the target settings. +Also make sure to select your device by editing the makefile in the directory. ``` $ cd $ make defconfig $ make menuconfig -$ make +$ make package/snapcast/compile ``` The packaged `ipk` file is in diff --git a/openwrt/snapcast/Makefile b/openwrt/snapcast/Makefile index 0169cf0..72ac929 100644 --- a/openwrt/snapcast/Makefile +++ b/openwrt/snapcast/Makefile @@ -109,7 +109,7 @@ define Package/snapclient/install $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_BIN) ./files/snapclient.init $(1)/etc/init.d/snapclient $(INSTALL_DIR) $(1)/etc/default - $(INSTALL_BIN) $(PKG_BUILD_DIR)/debian/snapclient.default $(1)/etc/default/snapclient +# $(INSTALL_BIN) $(PKG_BUILD_DIR)/debian/snapclient.default $(1)/etc/default/snapclient endef $(eval $(call BuildPackage,snapserver))