diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2005-03-09 19:12:58 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2005-03-09 19:12:58 +0000 |
commit | d3d96d6ef268ed99ef38e1a8a46fdd471bb85f3b (patch) | |
tree | 3661b07b9edf7f2a80dc8a654613516696d2c4b5 /usr.bin/mg/Makefile | |
parent | cefc028cbbcd6f313cc38faa6189be6274aac05b (diff) |
remove useless -DBACKUP from CFLAGS and change the comment for BACKUP
to NOBACKUP what the code actually uses (and reverse the descr too of course)
spotted by jmc@ quite some time ago, no binary change.
Diffstat (limited to 'usr.bin/mg/Makefile')
-rw-r--r-- | usr.bin/mg/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mg/Makefile b/usr.bin/mg/Makefile index 631f55669fd..768efbc3fd1 100644 --- a/usr.bin/mg/Makefile +++ b/usr.bin/mg/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.13 2003/05/05 11:12:07 vincent Exp $ +# $OpenBSD: Makefile,v 1.14 2005/03/09 19:12:57 henning Exp $ PROG= mg @@ -12,11 +12,11 @@ DPADD+= ${LIBCURSES} # FKEYS -- add support for function key sequences. # XKEYS -- use termcap function key definitions. Warning - # XKEYS and bsmap mode do _not_ get along. -# BACKUP -- enable "make-backup-files" +# NOBACKUP -- disable "make-backup-files" # PREFIXREGION -- enable function "prefix-region" # REGEX -- create regular expression functions # -CFLAGS+=-Wall -DDO_METAKEY -DPREFIXREGION -DXKEYS -DFKEYS -DBACKUP -DREGEX +CFLAGS+=-Wall -DDO_METAKEY -DPREFIXREGION -DXKEYS -DFKEYS -DREGEX SRCS= cinfo.c fileio.c spawn.c ttyio.c tty.c ttykbd.c \ basic.c dir.c dired.c file.c line.c match.c paragraph.c \ |