diff options
author | Kurt Miller <kurt@cvs.openbsd.org> | 2008-09-15 18:13:37 +0000 |
---|---|---|
committer | Kurt Miller <kurt@cvs.openbsd.org> | 2008-09-15 18:13:37 +0000 |
commit | 9664f7692fbd31b9cf02bbeac35d262c1e6cbc47 (patch) | |
tree | 23a34faf5392e0a95dc59a91410f2d5e9e190ce8 | |
parent | 8a4f1de8df0499ee25df27aa7cc2f0f3fdb7b572 (diff) |
Use LDSTATIC for -static not LDFLAGS. okay millert@ kettenis@
-rw-r--r-- | distrib/special/dd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/special/dd/Makefile b/distrib/special/dd/Makefile index 07fc974dd8b..045f6c2d1b1 100644 --- a/distrib/special/dd/Makefile +++ b/distrib/special/dd/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.1 2005/08/02 11:16:44 espie Exp $ +# $OpenBSD: Makefile,v 1.2 2008/09/15 18:13:36 kurt Exp $ COPTS+=-Os # Define NO_CONV to disable character conversion CFLAGS+=-DNO_CONV -LDFLAGS=-static +LDSTATIC=-static PROG= dd SRCS= args.c conv.c dd.c misc.c position.c |