summaryrefslogtreecommitdiffstats
path: root/rules/pciutils.make
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2019-06-04 14:41:45 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-06-04 21:10:00 +0200
commit8fc41ef64f62168463b4814ceb002fd1f29f299b (patch)
tree2a0a9a4b8d7fa103c61879510100c34e05b7691c /rules/pciutils.make
parent5c1e765facfa000f0f2cb7196da8f8f59bc71663 (diff)
downloadptxdist-8fc41ef64f62168463b4814ceb002fd1f29f299b.tar.gz
ptxdist-8fc41ef64f62168463b4814ceb002fd1f29f299b.tar.xz
pciutils: 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/pciutils.make')
-rw-r--r--rules/pciutils.make2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/pciutils.make b/rules/pciutils.make
index 6ef7e14f7..1d52add0f 100644
--- a/rules/pciutils.make
+++ b/rules/pciutils.make
@@ -36,7 +36,7 @@ PCIUTILS_MAKE_ENV := $(CROSS_ENV)
PCIUTILS_MAKE_OPT := \
CROSS_COMPILE=$(COMPILER_PREFIX) \
PREFIX=/usr \
- SBINDIR='\$$(PREFIX)/bin' \
+ SBINDIR=/usr/bin \
HOST=$(PTXCONF_ARCH_STRING)-linux \
RELEASE=$(KERNEL_HEADER_VERSION) \
ZLIB=$(call ptx/yesno, PTXCONF_PCIUTILS_COMPRESS) \