Module Name: src Committed By: kre Date: Thu Jun 8 02:25:43 UTC 2017
Modified Files: src/bin/sh: Makefile eval.c Log Message: I am an idiot... revert the previous unintended commit. To generate a diff of this commit: cvs rdiff -u -r1.111 -r1.112 src/bin/sh/Makefile cvs rdiff -u -r1.144 -r1.145 src/bin/sh/eval.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/bin/sh/Makefile diff -u src/bin/sh/Makefile:1.111 src/bin/sh/Makefile:1.112 --- src/bin/sh/Makefile:1.111 Thu Jun 8 02:23:51 2017 +++ src/bin/sh/Makefile Thu Jun 8 02:25:43 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.111 2017/06/08 02:23:51 kre Exp $ +# $NetBSD: Makefile,v 1.112 2017/06/08 02:25:43 kre Exp $ # @(#)Makefile 8.4 (Berkeley) 5/5/95 .include <bsd.own.mk> @@ -26,11 +26,9 @@ SCRIPT_ENV= \ CPPFLAGS+=-DSHELL -I. -I${.CURDIR} #XXX: For testing only. #CPPFLAGS+=-DDEBUG=3 -CPPFLAGS+=-DDEBUG=1 -COPTS+=-g +#COPTS+=-g #CFLAGS+=-funsigned-char #TARGET_CHARFLAG?= -DTARGET_CHAR="unsigned char" -funsigned-char -CFLAGS+=-Wall # Reproducible build parameters ... export into sh for NETBSD_SHELL setting .if ${MKREPRO_TIMESTAMP:Uno} != "no" Index: src/bin/sh/eval.c diff -u src/bin/sh/eval.c:1.144 src/bin/sh/eval.c:1.145 --- src/bin/sh/eval.c:1.144 Thu Jun 8 02:23:51 2017 +++ src/bin/sh/eval.c Thu Jun 8 02:25:43 2017 @@ -1,4 +1,4 @@ -/* $NetBSD: eval.c,v 1.144 2017/06/08 02:23:51 kre Exp $ */ +/* $NetBSD: eval.c,v 1.145 2017/06/08 02:25:43 kre Exp $ */ /*- * Copyright (c) 1993 @@ -37,7 +37,7 @@ #if 0 static char sccsid[] = "@(#)eval.c 8.9 (Berkeley) 6/8/95"; #else -__RCSID("$NetBSD: eval.c,v 1.144 2017/06/08 02:23:51 kre Exp $"); +__RCSID("$NetBSD: eval.c,v 1.145 2017/06/08 02:25:43 kre Exp $"); #endif #endif /* not lint */ @@ -776,8 +776,7 @@ evalcommand(union node *cmd, int flgs, s vforked = 0; /* First expand the arguments. */ - CTRACE(DBG_EVAL, ("evalcommand(%p, %d) called (%d)\n", cmd, flags, - (cmd ? cmd->ncmd.lineno : -1))); + TRACE(("evalcommand(%p, %d) called\n", cmd, flags)); setstackmark(&smark); back_exitstatus = 0;