diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-12-09 23:43:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-12-09 23:43:12 +0000 |
commit | 3e223a98eb0a9a6eaf43fa4c17751026e5fdc2ef (patch) | |
tree | 1acce913cdbfb4202396c421d73a9a730a36adb1 /gnu/usr.bin/diff/Makefile | |
parent | c5b03361b1861d29fec0af725a91b6ac90fe9f74 (diff) |
We now have getopt_long() in libc, no need to build a private copy.
Diffstat (limited to 'gnu/usr.bin/diff/Makefile')
-rw-r--r-- | gnu/usr.bin/diff/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/diff/Makefile b/gnu/usr.bin/diff/Makefile index ad50b95bfc5..c9b3508e3f7 100644 --- a/gnu/usr.bin/diff/Makefile +++ b/gnu/usr.bin/diff/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.3 1996/08/20 05:14:06 tholo Exp $ +# $OpenBSD: Makefile,v 1.4 2002/12/09 23:43:11 millert Exp $ # $NetBSD: Makefile,v 1.8 1995/07/12 07:21:05 cgd Exp $ PROG= diff SRCS= diff.c analyze.c cmpbuf.c io.c context.c ed.c normal.c util.c dir.c \ - regex.c side.c ifdef.c version.c getopt.c getopt1.c + regex.c side.c ifdef.c version.c CFLAGS+=-DHAVE_CONFIG_H -I${.CURDIR} -DPR_PROGRAM=\"/usr/bin/pr\" |