This is the mail archive of the crossgcc@sourceware.org mailing list for the crossgcc project.

See crosstool-NG for lots more information.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 1 of 2] Makefile.in: Use only standard options compatible with BSD install


# HG changeset patch
# User Titus von Boxberg <titus@v9g.de>
# Date 1352217726 -3600
# Node ID 51587db99510a9ec08f831b2ed596017efb253a5
# Parent  bd4af15b7c7577de5e7abbf0b2be1729523b0127
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>

diff -r bd4af15b7c75 -r 51587db99510 Makefile.in
--- a/Makefile.in	Wed Oct 31 23:31:32 2012 +0100
+++ b/Makefile.in	Tue Nov 06 17:02:06 2012 +0100
@@ -347,8 +347,9 @@
 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)

--
For unsubscribe information see http://sourceware.org/lists.html#faq


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]