From 6998531ed4ed2bb0cb72913ba16d520295b5a25d Mon Sep 17 00:00:00 2001 From: jperkin Date: Mon, 18 Mar 2013 11:24:42 +0000 Subject: Use `` instead of $(), fixes bootstrap on older SunOS versions which have the legacy /bin/sh. Fix from asau. --- pkgtools/bootstrap-mk-files/files/bootstrap.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgtools') diff --git a/pkgtools/bootstrap-mk-files/files/bootstrap.sh b/pkgtools/bootstrap-mk-files/files/bootstrap.sh index d9a02f19920..aa95d22e55c 100755 --- a/pkgtools/bootstrap-mk-files/files/bootstrap.sh +++ b/pkgtools/bootstrap-mk-files/files/bootstrap.sh @@ -14,9 +14,9 @@ : ${CP:=cp} : ${SED:=sed} -: ${OPSYS:=$(uname)} -: ${ROOT_USER:=$(id -un 0)} -: ${ROOT_GROUP:=$(id -gn "${ROOT_USER}")} +: ${OPSYS:=`uname`} +: ${ROOT_USER:=`id -un 0`} +: ${ROOT_GROUP:=`id -gn "${ROOT_USER}"`} : ${MK_DST:=/usr/local/share/mk} : ${SYSCONFDIR:=/usr/local/etc} -- cgit v1.2.3