diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-01-14 17:46:37 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-01-14 17:46:37 +0000 |
commit | c8b7655b81b82d09751246823e4e8a18b34d6506 (patch) | |
tree | bd6838586a118d1cbae82ddb6cd544185df911dc /gnu/usr.bin | |
parent | 2a32db2cddfac1c652eddbfa6700d165a2526b6d (diff) |
Add options to CFLAGS, not COPTS; wd@ics.nara-wu.ac.jp
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/bc/bcwrap/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/bc/bcwrap/Makefile b/gnu/usr.bin/bc/bcwrap/Makefile index d3aca80f0df..98dd939e61f 100644 --- a/gnu/usr.bin/bc/bcwrap/Makefile +++ b/gnu/usr.bin/bc/bcwrap/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.5 1999/07/22 02:35:02 deraadt Exp $ +# $OpenBSD: Makefile,v 1.6 2000/01/14 17:46:36 millert Exp $ BINDIR?= /usr/bin PROG= bc SRCS= wrap-anything.c NOMAN= -COPTS+=-DWRAP=\"/usr/bin/gnubc\" -DBLOCK +CFLAGS+=-DWRAP=\"/usr/bin/gnubc\" -DBLOCK .include <bsd.prog.mk> |