svn commit: r242539 - stable/9/etc/root
Eitan Adler
eadler at FreeBSD.org
Sun Nov 4 00:30:43 UTC 2012
Author: eadler
Date: Sun Nov 4 00:30:42 2012
New Revision: 242539
URL: http://svn.freebsd.org/changeset/base/242539
Log:
MFC r242452:
The test fails with "exit 1" if /usr/games/fortune doesn't actually
exist. Fix that.
PR: conf/71994
Approved by: cperciva (implicit)
Modified:
stable/9/etc/root/dot.login
Directory Properties:
stable/9/etc/ (props changed)
Modified: stable/9/etc/root/dot.login
==============================================================================
--- stable/9/etc/root/dot.login Sun Nov 4 00:30:42 2012 (r242538)
+++ stable/9/etc/root/dot.login Sun Nov 4 00:30:42 2012 (r242539)
@@ -6,4 +6,4 @@
#
# Uncomment to display a random cookie each login:
-# [ -x /usr/games/fortune ] && /usr/games/fortune -s
+# if ( -x /usr/games/fortune ) /usr/games/fortune -s
More information about the svn-src-stable-9
mailing list