aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2005-12-09 12:49:23 +1000
committerGravatar axel <axel@liljencrantz.se>2005-12-09 12:49:23 +1000
commit39ca0277067a74fdfa5f8f47fbce314c795c35f1 (patch)
treee57a0492535d238375063646353217e1a9483432 /Makefile.in
parent22433f2717bb4e3bd7ee1c048a94207513fb4bb1 (diff)
Do not fail make install on missing ChangeLog
darcs-hash:20051209024923-ac50b-9a998c9e221c1a2d5613498e78614fafc5c6a347.gz
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 5457e38f..00426588 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -283,7 +283,9 @@ install: all
$(INSTALL) -m 644 init/fish_inputrc $(DESTDIR)$(sysconfdir)$(fishinputfile);
$(INSTALL) -m 755 -d $(DESTDIR)$(docdir)
for i in user_doc/html/* ChangeLog; do \
- $(INSTALL) -m 644 $$i $(DESTDIR)$(docdir); \
+ if test -f $$i; then \
+ $(INSTALL) -m 644 $$i $(DESTDIR)$(docdir); \
+ fi; \
done;
$(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
for i in $(MANUALS); do \