summaryrefslogtreecommitdiffstats
path: root/rules/i2c-tools.make
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2019-06-04 14:43:13 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-06-04 21:10:00 +0200
commite3ebaf18063c900eadf0e428fa730092db3ba523 (patch)
treea923d63b4873b1068cae28739c5d76687b5b8427 /rules/i2c-tools.make
parent8fc41ef64f62168463b4814ceb002fd1f29f299b (diff)
downloadptxdist-e3ebaf18063c900eadf0e428fa730092db3ba523.tar.gz
ptxdist-e3ebaf18063c900eadf0e428fa730092db3ba523.tar.xz
i2c-tools: avoid using $$
The escaping for $ does not work correctly everywhere and will change. It's not needed, so just don't use it here. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/i2c-tools.make')
-rw-r--r--rules/i2c-tools.make2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/i2c-tools.make b/rules/i2c-tools.make
index dddc5a614..1da72a397 100644
--- a/rules/i2c-tools.make
+++ b/rules/i2c-tools.make
@@ -39,7 +39,7 @@ I2C_TOOLS_MAKE_ENV := \
# this way they don't collide with the toolchain's i2c headers
I2C_TOOLS_INSTALL_OPT := \
prefix=/usr \
- incdir="\$$(prefix)/include/i2c-tools" \
+ incdir=/usr/include/i2c-tools \
install
# ----------------------------------------------------------------------------