diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-06-26 17:22:27 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-06-26 17:22:27 +0000 |
commit | 089bee833f6924845c00e8115e365e4c01c1e332 (patch) | |
tree | f4a38aecac92be0f65c94c0cbc2823c49ac8a77b /gnu | |
parent | 98201a516fa1bf2c516f325ab5d4a13ff3d695dc (diff) |
Use libc getopt_long; missed when I changed diff's main Makefile
a while ago.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/diff3/Makefile | 4 | ||||
-rw-r--r-- | gnu/usr.bin/sdiff/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/diff3/Makefile b/gnu/usr.bin/diff3/Makefile index 87b431b68ed..7787d9e7cd5 100644 --- a/gnu/usr.bin/diff3/Makefile +++ b/gnu/usr.bin/diff3/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.2 1996/08/20 05:14:06 tholo Exp $ +# $OpenBSD: Makefile,v 1.3 2003/06/26 17:22:26 millert Exp $ # $NetBSD: Makefile,v 1.7 1995/04/23 07:58:33 cgd Exp $ PROG= diff3 -SRCS= diff3.c getopt.c getopt1.c version.c +SRCS= diff3.c version.c CFLAGS+= -I$(.CURDIR)/../diff \ -DHAVE_CONFIG_H -DDIFF_PROGRAM=\"/usr/bin/diff\" diff --git a/gnu/usr.bin/sdiff/Makefile b/gnu/usr.bin/sdiff/Makefile index b3ae8c02477..d1182be51d1 100644 --- a/gnu/usr.bin/sdiff/Makefile +++ b/gnu/usr.bin/sdiff/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.2 1996/08/20 05:14:11 tholo Exp $ +# $OpenBSD: Makefile,v 1.3 2003/06/26 17:22:26 millert Exp $ # $NetBSD: Makefile,v 1.6 1995/04/23 07:58:50 cgd Exp $ PROG= sdiff -SRCS= sdiff.c getopt.c getopt1.c version.c +SRCS= sdiff.c version.c CFLAGS+= -I$(.CURDIR)/../diff \ -DHAVE_CONFIG_H -DDIFF_PROGRAM=\"/usr/bin/diff\" |