summaryrefslogtreecommitdiffstats
path: root/rules.mk
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2018-11-29 12:32:34 +0100
committerJo-Philipp Wich <jo@mein.io>2018-11-29 12:33:15 +0100
commit1416b63dcbadbb5c11c2591b4513f5276b6dc744 (patch)
tree5429271381690a139de9d74489a8793479dc41f8 /rules.mk
parentb0261ee5e9bcbc743960727b5aad1829250d1add (diff)
downloadopenwrt-1416b63dcbadbb5c11c2591b4513f5276b6dc744.tar.gz
openwrt-1416b63dcbadbb5c11c2591b4513f5276b6dc744.tar.bz2
openwrt-1416b63dcbadbb5c11c2591b4513f5276b6dc744.zip
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>
Diffstat (limited to 'rules.mk')
-rw-r--r--rules.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.mk b/rules.mk
index 96f2d8c112..e97b3f6491 100644
--- a/rules.mk
+++ b/rules.mk
@@ -281,7 +281,7 @@ PATCH:=patch
PYTHON:=python
INSTALL_BIN:=install -m0755
-INSTALL_SUID:install -m4755
+INSTALL_SUID:=install -m4755
INSTALL_DIR:=install -d -m0755
INSTALL_DATA:=install -m0644
INSTALL_CONF:=install -m0600