aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authorGravatar Konrad Borowski <glitchmr@myopera.com>2013-08-13 17:13:18 +0300
committerGravatar Konrad Borowski <glitchmr@myopera.com>2013-08-13 17:13:18 +0300
commit07c48590c0588abb2a8a6d174d6fde42b97216e4 (patch)
treea672bcbaec3990788cb6a6b4002b39cbb340563c /Makefile.in
parent4388b73077814a8ae45429bfa70f0b9c013c0547 (diff)
Be quiet about "if" conditional.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 745628e6..3c0eeffe 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -640,12 +640,12 @@ install-force: all install-translations
@echo fish is now installed on your system.
@echo To run fish, type \'fish\' in your terminal.
@echo
- if type chsh &> /dev/null; then \
+ @if type chsh &> /dev/null; then \
echo To use fish as your login shell:; \
grep -q -- "$(DESTDIR)$(bindir)/fish" /etc/shells || echo \* add the line \'$(DESTDIR)$(bindir)/fish\' to the file \'/etc/shells\'.; \
echo \* use the command \'chsh -s $(DESTDIR)$(bindir)/fish\'.; \
+ echo; \
fi;
- @echo
@echo To set your colors, run \'fish_config\'
@echo To scan your man pages for completions, run \'fish_update_completions\'
@echo To autocomplete command suggestions press Ctrl + F or right arrow key.