svn commit: r184443 - head/etc

Mark Peek mp at FreeBSD.org
Wed Oct 29 11:46:47 PDT 2008


Author: mp
Date: Wed Oct 29 18:46:47 2008
New Revision: 184443
URL: http://svn.freebsd.org/changeset/base/184443

Log:
  Explicitly set the shell to /bin/sh when MK_TCSH == no.
  
  Not objected to by:	sam

Modified:
  head/etc/Makefile

Modified: head/etc/Makefile
==============================================================================
--- head/etc/Makefile	Wed Oct 29 17:27:23 2008	(r184442)
+++ head/etc/Makefile	Wed Oct 29 18:46:47 2008	(r184443)
@@ -154,7 +154,7 @@ distribution:
 	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
 		master.passwd nsmb.conf opieaccess ${DESTDIR}/etc;
 .if ${MK_TCSH} == "no"
-	sed -i "" -e 's;/bin/csh;;' ${DESTDIR}/etc/master.passwd
+	sed -i "" -e 's;/bin/csh;/bin/sh;' ${DESTDIR}/etc/master.passwd
 .endif
 	pwd_mkdb ${PWD_MKDB_ENDIAN} -i -p -d ${DESTDIR}/etc \
 	    ${DESTDIR}/etc/master.passwd


More information about the svn-src-all mailing list