summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-04-29 04:14:24 (GMT)
committerAlexey Neyman <stilor@att.net>2017-04-29 04:14:24 (GMT)
commitc2ce5a21a180c75338e9ddcf8ee7c69b47d0463c (patch)
tree2e2f87ca9bafe26caabfb3254defeeabdd9efa53 /Makefile.in
parent88fdbac4252744931ebcf80ade547ade525b71f4 (diff)
Fix for missing DESTDIR
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 82fcd54..b5723e7 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -308,7 +308,7 @@ install-lib-samples: $(DESTDIR)$(libdir) install-lib-main
@$(install) -m 644 samples/samples.mk "$(DESTDIR)$(libdir)/samples/samples.mk"
install-lib-kconfig: $(DESTDIR)$(libdir) install-lib-main
- $(call __silent,MKDIR,$@)$(install) -m 755 -d "$(libdir)/kconfig"
+ $(call __silent,MKDIR,$@)$(install) -m 755 -d "$(DESTDIR)$(libdir)/kconfig"
$(call __silent,ENTER,kconfig)$(MAKE) -C kconfig install \
DESTDIR=$(DESTDIR)$(libdir)/kconfig
$(call __silent,LEAVE,kconfig):