From: Marc-Antoine Perennou Date: Mon, 11 Jul 2011 12:46:27 +0000 (+0200) Subject: build-sys: fix spaces versus tabs conflict X-Git-Tag: v2.20-rc1~103 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfa8d39b5826b928deb6d84aee3a4a1d6557364c;p=thirdparty%2Futil-linux.git build-sys: fix spaces versus tabs conflict For some reason, tabs were replaced by spaces in commit 73ae0d5be6e070afe83d1a2324ac79941629201e Signed-off-by: Marc-Antoine Perennou --- diff --git a/term-utils/Makefile.am b/term-utils/Makefile.am index 50138980f1..7b545c38da 100644 --- a/term-utils/Makefile.am +++ b/term-utils/Makefile.am @@ -68,12 +68,12 @@ if USE_TTY_GROUP if MAKEINSTALL_DO_CHOWN install-exec-hook:: if BUILD_WALL - chgrp tty $(DESTDIR)$(usrbin_execdir)/wall - chmod g+s $(DESTDIR)$(usrbin_execdir)/wall + chgrp tty $(DESTDIR)$(usrbin_execdir)/wall + chmod g+s $(DESTDIR)$(usrbin_execdir)/wall endif if BUILD_WRITE - chgrp tty $(DESTDIR)$(usrbin_execdir)/write - chmod g+s $(DESTDIR)$(usrbin_execdir)/write + chgrp tty $(DESTDIR)$(usrbin_execdir)/write + chmod g+s $(DESTDIR)$(usrbin_execdir)/write endif endif endif