summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in11
1 files changed, 5 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in
index 634abaf..3d2c607 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -304,14 +304,13 @@ $(patsubst %,install-lib-%-copy,$(LIB_SUB_DIR)): $(DESTDIR)$(libdir)
@tar cf - --exclude='*.sh.in' $(patsubst install-lib-%-copy,%,$(@)) \
|(cd "$(DESTDIR)$(libdir)"; tar xf -)
-# Huh? It seems we need at least one command to make this rule kick-in.
-install-lib-%: install-lib-%-copy; @true
+# We need at least one command to make this rule kick-in.
+install-lib-%: install-lib-%-copy
+ @true
-# Huh? that one does not inherit the -opy dependency, above...
install-lib-scripts: install-lib-scripts-copy
@chmod a+x $(DESTDIR)$(libdir)/scripts/crosstool-NG.sh
@chmod a+x $(DESTDIR)$(libdir)/scripts/saveSample.sh
- @rm -f "$(DESTDIR)$(libdir)/scripts/addToolVersion.sh"
install-lib-main: $(DESTDIR)$(libdir) $(patsubst %,install-lib-%,$(LIB_SUB_DIR))
@echo " INST 'steps.mk'"
@@ -361,8 +360,8 @@ install-doc-message:
install-doc-real: $(DESTDIR)$(docdir)
- @echo " INST 'docs/*.txt'"
- @for doc_file in docs/*.txt; do \
+ @echo " INST 'docs/manual/*.md'"
+ @for doc_file in docs/manual/*.md; do \
$(install) -m 644 "$${doc_file}" "$(DESTDIR)$(docdir)"; \
done