From 50f8ff1bc5230fe83f85aaa3621fbf3be8126721 Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Sun, 24 Sep 2017 13:58:13 -0500 Subject: [PATCH] Make instructions after `make install` more uniformly formatted Fixed indentation and quoting to match between all three commands printed after `make install` --- Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.in b/Makefile.in index d1535b903..81321f212 100644 --- a/Makefile.in +++ b/Makefile.in @@ -648,13 +648,13 @@ install: all install-force | check-legacy-binaries @echo @if type chsh >/dev/null 2>&1; 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 " * run $(yellow)chsh -s $(DESTDIR)$(bindir)/fish$(sgr0)"; \ + grep -q -- "$(DESTDIR)$(bindir)/fish" /etc/shells || echo \ \* add the line \'$(DESTDIR)$(bindir)/fish\' to the file \'/etc/shells\'; \ + echo " * run '$(yellow)chsh -s $(DESTDIR)$(bindir)/fish$(sgr0)'"; \ echo; \ fi; @if type chcon >/dev/null 2>&1; then \ echo If you have SELinux enabled, you may need to manually update the security policy:; \ - echo \* use the command \'chcon -t shell_exec_t $(DESTDIR)$(bindir)/fish\'.; \ + echo \ \* use the command \'chcon -t shell_exec_t $(DESTDIR)$(bindir)/fish\'; \ echo; \ fi; @echo "To set your colors, run $(green)$(bo)fish_config$(sgr0)"