diff options
author | bde <bde@FreeBSD.org> | 2001-10-19 12:45:59 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2001-10-19 12:45:59 +0000 |
commit | 1eb768ee311caa01315ef227cfbd8ce6788315dd (patch) | |
tree | ee40dca480f7a061e50b5e1f275420f2476056d5 | |
parent | 602d3a50926fc6a26d3f67c017a89cd63fc684e1 (diff) | |
download | FreeBSD-src-1eb768ee311caa01315ef227cfbd8ce6788315dd.zip FreeBSD-src-1eb768ee311caa01315ef227cfbd8ce6788315dd.tar.gz |
Fixed style bugs in previous commit:
- don't comment out the old version; just modify it.
- don't 2 sets of 3 style bugs that weren't present in the old version.
-rw-r--r-- | gnu/usr.bin/bc/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/usr.bin/bc/Makefile b/gnu/usr.bin/bc/Makefile index 3ad6d3c..f5ad9dd 100644 --- a/gnu/usr.bin/bc/Makefile +++ b/gnu/usr.bin/bc/Makefile @@ -8,10 +8,8 @@ PROG= bc SRCS= bc.y execute.c global.c load.c main.c scan.l storage.c util.c \ number.c getopt.c getopt1.c CFLAGS+=-I. -I${.CURDIR} -I${.CURDIR}/../../../contrib/bc/h -DHAVE_CONFIG_H -#DPADD= ${LIBREADLINE} ${LIBTERMCAP} -#LDADD= -lreadline -ltermcap -DPADD += ${LIBEDIT} ${LIBTERMCAP} -LDADD += -ledit -ltermcap +DPADD= ${LIBEDIT} ${LIBTERMCAP} +LDADD= -ledit -ltermcap EXAMPLES= ckbook.b pi.b primes.b twins.b EXAMPDIR= /usr/share/examples/bc |