From 7b13194abb7363c41e57fdfda7ad88229a9f60df Mon Sep 17 00:00:00 2001 From: Lauri Tirkkonen Date: Fri, 19 May 2017 15:57:54 +0300 Subject: [PATCH] ksh: don't set -o xtrace during make install --- usr/src/cmd/ksh/Makefile | 3 +-- usr/src/cmd/ksh/Makefile.com | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/usr/src/cmd/ksh/Makefile b/usr/src/cmd/ksh/Makefile index bfdb2caf3c..cddf3ec9da 100644 --- a/usr/src/cmd/ksh/Makefile +++ b/usr/src/cmd/ksh/Makefile @@ -62,8 +62,7 @@ $(PROG).po: $(TOUCH) $(PROG).po install: $(ISAEXEC) $(SUBDIRS) - @(set -o xtrace ; \ - builtin ln ; \ + @(builtin ln ; \ builtin rm ; \ rm -f $(ROOTPROG) ; \ ln $(ISAEXEC) $(ROOTPROG) ; \ diff --git a/usr/src/cmd/ksh/Makefile.com b/usr/src/cmd/ksh/Makefile.com index 423f09dbe5..231e9005a7 100644 --- a/usr/src/cmd/ksh/Makefile.com +++ b/usr/src/cmd/ksh/Makefile.com @@ -95,7 +95,6 @@ CLOBBERFILES += \ # Install rule for $(MACH)/Makefile (32bit) INSTALL.ksh.32bit=@ \ (print "$(POUND_SIGN) Installing 32bit $(PROG) aliases $(USRKSH_ALIAS_LIST)" ; \ - set -o xtrace ; \ for i in $(USRKSH_ALIAS_LIST) ; do \ [[ "$$i" == "$(PROG)" ]] && continue ; \ $(RM) "$(ROOTBIN32)/$$i" ; \ @@ -106,7 +105,6 @@ INSTALL.ksh.32bit=@ \ # Install rule for $(MACH64)/Makefile (64bit) INSTALL.ksh.64bit=@ \ (print "$(POUND_SIGN) Installing 64bit $(PROG) aliases $(USRKSH_ALIAS_LIST)" ; \ - set -o xtrace ; \ for i in $(USRKSH_ALIAS_LIST) ; do \ [[ "$$i" == "$(PROG)" ]] && continue ; \ $(RM) "$(ROOTBIN64)/$$i" ; \ -- 2.11.4.GIT