svn commit: r257938 - head/usr.sbin/bsdconfig/share

Devin Teske dteske at FreeBSD.org
Mon Nov 11 02:02:06 UTC 2013


Author: dteske
Date: Mon Nov 11 02:02:05 2013
New Revision: 257938
URL: http://svnweb.freebsd.org/changeset/base/257938

Log:
  Remove the env(1) but keep the var.

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

Modified: head/usr.sbin/bsdconfig/share/common.subr
==============================================================================
--- head/usr.sbin/bsdconfig/share/common.subr	Mon Nov 11 01:42:59 2013	(r257937)
+++ head/usr.sbin/bsdconfig/share/common.subr	Mon Nov 11 02:02:05 2013	(r257938)
@@ -64,8 +64,8 @@ export UNAME_M="$(uname -m)" # Machine p
 export UNAME_R="$(uname -r)" # Release Level (i.e. X.Y-RELEASE)
 if [ ! "${PKG_ABI+set}" ]; then
 	export PKG_ABI="$(
-		env ASSUME_ALWAYS_YES=1 \
-		pkg -vv | awk '$1=="ABI:"{print $2;exit}' 2> /dev/null
+		ASSUME_ALWAYS_YES=1 pkg -vv |
+			awk '$1=="ABI:"{print $2;exit}' 2> /dev/null
 	)"
 fi
 


More information about the svn-src-all mailing list