aboutsummaryrefslogtreecommitdiffstats
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:35:16 +0100
commite84f289a02b1dbfbda77b5b3ab4dfea94505a5b6 (patch)
treed9c637b460e53ea923496934708c7deb8f566362
parent89ed2d6f782fe7fc31deb25724764bc413c7e23f (diff)
downloadupstream-e84f289a02b1dbfbda77b5b3ab4dfea94505a5b6.tar.gz
upstream-e84f289a02b1dbfbda77b5b3ab4dfea94505a5b6.tar.bz2
upstream-e84f289a02b1dbfbda77b5b3ab4dfea94505a5b6.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> (cherry picked from commit 1416b63dcbadbb5c11c2591b4513f5276b6dc744)
-rw-r--r--rules.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.mk b/rules.mk
index 926e2d1b10..865e204dcb 100644
--- a/rules.mk
+++ b/rules.mk
@@ -265,7 +265,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