diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2004-11-10 22:07:47 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2004-11-10 22:07:47 +0000 |
commit | 3e15ea9c2f144cc35252da55828024da223623b9 (patch) | |
tree | 1fc837d761247bd0069becf109f5aa6eebcfa00d /sbin/ping/Makefile | |
parent | e799b11d3352edb83ed0edcb94f7232e8a1fc219 (diff) |
Use ${STATIC} rather than -static (dont hardcode). ok miod@
Diffstat (limited to 'sbin/ping/Makefile')
-rw-r--r-- | sbin/ping/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ping/Makefile b/sbin/ping/Makefile index 764d110881f..5108849e042 100644 --- a/sbin/ping/Makefile +++ b/sbin/ping/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.4 2002/05/12 17:14:02 deraadt Exp $ +# $OpenBSD: Makefile,v 1.5 2004/11/10 22:07:46 drahn Exp $ PROG= ping MAN= ping.8 BINOWN= root BINMODE=4555 -LDSTATIC=-static +LDSTATIC=${STATIC} .include <bsd.prog.mk> |