svn commit: r203853 - user/dougb/portmaster

Doug Barton dougb at FreeBSD.org
Sun Feb 14 05:44:06 UTC 2010


Author: dougb
Date: Sun Feb 14 05:44:06 2010
New Revision: 203853
URL: http://svn.freebsd.org/changeset/base/203853

Log:
  Catch up with the cons* fix committed in ports version 2.19.

Modified:
  user/dougb/portmaster/portmaster

Modified: user/dougb/portmaster/portmaster
==============================================================================
--- user/dougb/portmaster/portmaster	Sun Feb 14 05:02:08 2010	(r203852)
+++ user/dougb/portmaster/portmaster	Sun Feb 14 05:44:06 2010	(r203853)
@@ -1666,7 +1666,7 @@ check_fetch_only () {
 
 term_printf () {
 	[ -n "$PM_NO_TERM_TITLE" ] && return
-	[ "$TERM" = cons25 ] && return
+	case "$TERM" in cons*) return ;; esac
 
 	printf "\033]0;${0##*/}: ${PM_PARENT_PORT}${1}\007"
 }


More information about the svn-src-user mailing list