From 34ec6f44ca7b8b0c7a210761b9e368ea011ec059 Mon Sep 17 00:00:00 2001 From: dteske Date: Mon, 11 Nov 2013 02:02:05 +0000 Subject: [PATCH] Remove the env(1) but keep the var. --- usr.sbin/bsdconfig/share/common.subr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/bsdconfig/share/common.subr b/usr.sbin/bsdconfig/share/common.subr index 3359e374e68c..31da26ee4590 100644 --- a/usr.sbin/bsdconfig/share/common.subr +++ b/usr.sbin/bsdconfig/share/common.subr @@ -64,8 +64,8 @@ export UNAME_M="$(uname -m)" # Machine platform (i.e. i386) 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