aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-09 16:36:35 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-09 16:36:35 -0800
commit646240fc54617d39e0768d256a15eda94ee52812 (patch)
treec37fe9c70bc6b8b6ac1634307c187e66e9e77a69 /Makefile.in
parent19cd7a248d20001e2e0c491987ca19cefcf8201b (diff)
Changed the Makefile to no longer fail if man pages are missing, etc.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 0e723767..cccf7964 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -583,12 +583,14 @@ install: all install-sh check-uninstall install-force
#
# Force installation, even in presense of incompatible previous
# version. This may fail.
+# These 'true' lines are to prevent installs from failing for (e.g.) missing man pages.
#
install-force: all install-translations
$(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
for i in $(PROGRAMS); do\
$(INSTALL) -m 755 $$i $(DESTDIR)$(bindir) ; \
+ true ;\
done;
$(INSTALL) -m 755 -d $(DESTDIR)$(sysconfdir)/fish
$(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish
@@ -599,12 +601,15 @@ install-force: all install-translations
$(INSTALL) -m 644 share/config.fish $(DESTDIR)$(datadir)/fish/
for i in $(COMPLETIONS_DIR_FILES); do \
$(INSTALL) -m 644 $$i $(DESTDIR)$(datadir)/fish/completions/; \
+ true; \
done;
for i in $(FUNCTIONS_DIR_FILES); do \
$(INSTALL) -m 644 $$i $(DESTDIR)$(datadir)/fish/functions/; \
+ true; \
done;
for i in share/man/*.1; do \
$(INSTALL) -m 644 $$i $(DESTDIR)$(datadir)/fish/man/; \
+ true; \
done;
$(INSTALL) -m 755 -d $(DESTDIR)$(docdir)
for i in user_doc/html/* ChangeLog; do \
@@ -615,6 +620,7 @@ install-force: all install-translations
$(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
for i in $(MANUALS); do \
$(INSTALL) -m 644 $$i $(DESTDIR)$(mandir)/man1/; \
+ true; \
done;
@echo fish is now installed on your system.
@echo To run fish, type \'fish\' in your terminal.