diff options
author | Titus von Boxberg <titus@v9g.de> | 2012-11-06 17:02:06 +0100 |
---|---|---|
committer | Titus von Boxberg <titus@v9g.de> | 2012-11-06 17:02:06 +0100 |
commit | 49a1602050ae536fffc3273f4592cc8cdb4f56b0 (patch) | |
tree | fa1ddb480ec29dc2f61c4fde00889c1cb4b298d5 | |
parent | a8318facc44efae6a42813d54ff2355338c70f07 (diff) | |
download | crosstool-ng-49a1602050ae536fffc3273f4592cc8cdb4f56b0.tar.gz crosstool-ng-49a1602050ae536fffc3273f4592cc8cdb4f56b0.tar.bz2 crosstool-ng-49a1602050ae536fffc3273f4592cc8cdb4f56b0.zip |
Makefile.in: Use only standard options compatible with BSD install
Don't use options specific to FSF's coreutils install.
Signed-off-by: Titus von Boxberg <titus@v9g.de>
Message-Id: <51587db99510a9ec08f8.1352226968@tschetwerikow.boxberg.lan>
Patchwork-Id: 197532
-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) |