From e1edfabb2fae2080a267b8d7713f46621033c1de Mon Sep 17 00:00:00 2001 From: bluhm Date: Tue, 4 Jul 2017 23:54:52 +0000 Subject: [PATCH] Switch to build user if run as root. Prompt output $ or # affects test. --- regress/bin/ksh/edit/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/regress/bin/ksh/edit/Makefile b/regress/bin/ksh/edit/Makefile index 23fe460704c..3d823bef0c2 100644 --- a/regress/bin/ksh/edit/Makefile +++ b/regress/bin/ksh/edit/Makefile @@ -5,10 +5,13 @@ SRCS= edit.c CFLAGS+= -Wall LDADD+= -lutil +# Switch to build user if run as root. Prompt output $ or # affects test. +SU!!= if [ "$$USER" = root ]; then echo su build; else echo sh; fi + emacs: edit - @sh ${.CURDIR}/emacs.sh ${.CURDIR} + ${SU} ${.CURDIR}/emacs.sh ${.CURDIR} vi: edit - @sh ${.CURDIR}/vi.sh ${.CURDIR} + ${SU} ${.CURDIR}/vi.sh ${.CURDIR} .include -- 2.20.1