oops, I didn't mean for the unconditional DEBUG code to go in, it's been

off in FreeBSD for some time.  I realised this a few seconds after the
commit started..
This commit is contained in:
Peter Wemm 1996-09-01 10:27:49 +00:00
parent aa9caaf657
commit 8a8c5e4e92
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=17988
2 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
# @(#)Makefile 8.4 (Berkeley) 5/5/95
# $Id: Makefile,v 1.12 1996/06/24 04:22:21 jkh Exp $
# $Id: Makefile,v 1.13 1996/09/01 10:19:18 peter Exp $
PROG= sh
SHSRCS= alias.c cd.c echo.c error.c eval.c exec.c expand.c \
@ -16,6 +16,8 @@ LDADD+= -ll -ledit -ltermcap
LFLAGS= -8 # 8-bit lex scanner for arithmetic
CFLAGS+=-DSHELL -I. -I${.CURDIR}
# for debug:
# CFLAGS+= -g -DDEBUG=2
.PATH: ${.CURDIR}/bltin ${.CURDIR}/../../usr.bin/printf

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)shell.h 8.2 (Berkeley) 5/4/95
* $Id: shell.h,v 1.3 1995/08/27 20:26:44 joerg Exp $
* $Id: shell.h,v 1.4 1996/09/01 10:21:41 peter Exp $
*/
/*
@ -57,9 +57,7 @@
#ifndef BSD
#define BSD 1
#endif
#ifndef DEBUG
#define DEBUG 1
#endif
/* #define DEBUG 1 */
#ifdef __STDC__
typedef void *pointer;