mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
rules.mk: fix syntax error
Fix broken assignment operator added in a previous commit. Fixes db73ec9f51 ("rules.mk: add INSTALL_SUID macro") Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
b0261ee5e9
commit
1416b63dcb
2
rules.mk
2
rules.mk
@ -281,7 +281,7 @@ PATCH:=patch
|
|||||||
PYTHON:=python
|
PYTHON:=python
|
||||||
|
|
||||||
INSTALL_BIN:=install -m0755
|
INSTALL_BIN:=install -m0755
|
||||||
INSTALL_SUID:install -m4755
|
INSTALL_SUID:=install -m4755
|
||||||
INSTALL_DIR:=install -d -m0755
|
INSTALL_DIR:=install -d -m0755
|
||||||
INSTALL_DATA:=install -m0644
|
INSTALL_DATA:=install -m0644
|
||||||
INSTALL_CONF:=install -m0600
|
INSTALL_CONF:=install -m0600
|
||||||
|
Loading…
Reference in New Issue
Block a user