diff options
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 3772058b..78185ed3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -347,8 +347,9 @@ install-lib-samples: $(DESTDIR)$(libdir) install-lib-main KCONFIG_FILES := conf mconf nconf kconfig.mk install-lib-kconfig: $(DESTDIR)$(libdir) install-lib-main @echo " INST 'kconfig/'" + @mkdir -p "$(DESTDIR)$(libdir)/kconfig" @for f in $(KCONFIG_FILES); do \ - install -D "kconfig/$${f}" "$(DESTDIR)$(libdir)/kconfig/$${f}"; \ + install "kconfig/$${f}" "$(DESTDIR)$(libdir)/kconfig/$${f}"; \ done install-doc: $(DESTDIR)$(docdir) |