diff options
author | Alexey Neyman <stilor@att.net> | 2017-04-28 21:14:24 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-04-28 21:14:24 -0700 |
commit | c2ce5a21a180c75338e9ddcf8ee7c69b47d0463c (patch) | |
tree | 2e2f87ca9bafe26caabfb3254defeeabdd9efa53 | |
parent | 88fdbac4252744931ebcf80ade547ade525b71f4 (diff) | |
download | crosstool-ng-c2ce5a21a180c75338e9ddcf8ee7c69b47d0463c.tar.gz crosstool-ng-c2ce5a21a180c75338e9ddcf8ee7c69b47d0463c.tar.bz2 crosstool-ng-c2ce5a21a180c75338e9ddcf8ee7c69b47d0463c.zip |
Fix for missing DESTDIR
Signed-off-by: Alexey Neyman <stilor@att.net>
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 82fcd540..b5723e70 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): |