summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-03-21 21:51:59 (GMT)
committerGitHub <noreply@github.com>2017-03-21 21:51:59 (GMT)
commita00978aca9dbee8bbee42a6eb433f5015626fb2b (patch)
treea60f812c07aa3f59eafd2c9fd34e212f3af3dde0 /Makefile.in
parent80daed99de7fb7f3b7a42f8bfd169fa9a44b63f0 (diff)
parentde4433298a5e25512aee559c1cb8f1d369aea611 (diff)
Merge pull request #654 from stilor/release-mgmt
Release mgmt
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