Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 2 Dec 2013 19:02:59 +0000 (UTC)
From:      Glen Barber <gjb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r258854 - head/usr.sbin/bsdconfig/share
Message-ID:  <201312021902.rB2J2x0o032333@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gjb
Date: Mon Dec  2 19:02:58 2013
New Revision: 258854
URL: http://svnweb.freebsd.org/changeset/base/258854

Log:
  Fix PKG_ABI detection in bsdconfig(8) after pkg-1.2 is released, since
  the format of 'pkg -vv' output has changed.
  
  MFC after:	3 days
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/usr.sbin/bsdconfig/share/common.subr

Modified: head/usr.sbin/bsdconfig/share/common.subr
==============================================================================
--- head/usr.sbin/bsdconfig/share/common.subr	Mon Dec  2 18:47:57 2013	(r258853)
+++ head/usr.sbin/bsdconfig/share/common.subr	Mon Dec  2 19:02:58 2013	(r258854)
@@ -65,7 +65,7 @@ export UNAME_R="$(uname -r)" # Release L
 if [ ! "${PKG_ABI+set}" ]; then
 	export PKG_ABI="$(
 		ASSUME_ALWAYS_YES=1 pkg -vv |
-			awk '$1=="ABI:"{print $2;exit}' 2> /dev/null
+			awk '$1=="ABI"{print $3;exit}' 2> /dev/null
 	)"
 fi
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312021902.rB2J2x0o032333>