diff options
Diffstat (limited to 'pkgtools')
-rwxr-xr-x | pkgtools/bootstrap-mk-files/files/bootstrap.sh | 6 |
1 files changed, 3 insertions, 3 deletions
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} |