diff options
author | Karel Kočí <cynerd@email.cz> | 2019-03-10 09:35:03 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2019-03-10 09:35:03 +0100 |
commit | f7f89f29b85e88e2ce11d9597039b2ee716b31f1 (patch) | |
tree | 12b29839c6eacd710b96281f0a2bab6c594c2683 /bigclown-leds/Makefile | |
parent | 2035424be7ad1fe0ea8acd29cdfa38310a29dee8 (diff) | |
download | openwrt-personal-pkgs-f7f89f29b85e88e2ce11d9597039b2ee716b31f1.tar.gz openwrt-personal-pkgs-f7f89f29b85e88e2ce11d9597039b2ee716b31f1.tar.bz2 openwrt-personal-pkgs-f7f89f29b85e88e2ce11d9597039b2ee716b31f1.zip |
bigclown-leds: fix missing executable permission
Diffstat (limited to 'bigclown-leds/Makefile')
-rw-r--r-- | bigclown-leds/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bigclown-leds/Makefile b/bigclown-leds/Makefile index 751493b..006083e 100644 --- a/bigclown-leds/Makefile +++ b/bigclown-leds/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=bigclown-leds PKG_VERSION:=1.0.1 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_MAINTAINER:=Karel Kočí <cynerd@email.cz> GIT_HASH:=a1236a39e7842ed24b3a9c986dba177d02be5114 @@ -24,7 +24,7 @@ endef define Package/$(PKG_NAME)/install $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_DATA) $(PKG_BUILD_DIR)/bigclown-leds $(1)/usr/bin/bigclown-leds + $(INSTALL_BIN) $(PKG_BUILD_DIR)/bigclown-leds $(1)/usr/bin/bigclown-leds $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_BIN) $(PKG_BUILD_DIR)/bigclown-leds.init $(1)/etc/init.d/bigclown-leds endef |