diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-02-21 08:54:58 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-02-21 08:54:58 +0000 |
commit | be5f65b98b1ae63ad6f14aa1f0201fcf72f7a80e (patch) | |
tree | b78e5698d91e8caeac863e12c9e8da8d4ca01bb8 /usr.sbin/installboot/Makefile | |
parent | 35661f752d4fd15b35ddb78c1587385cd22fb539 (diff) |
Use ${STATIC} not -static
ok jsing
Diffstat (limited to 'usr.sbin/installboot/Makefile')
-rw-r--r-- | usr.sbin/installboot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/installboot/Makefile b/usr.sbin/installboot/Makefile index e821528b4dd..b8e286ff025 100644 --- a/usr.sbin/installboot/Makefile +++ b/usr.sbin/installboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 2014/01/19 02:58:50 jsing Exp $ +# $OpenBSD: Makefile,v 1.12 2014/02/21 08:54:57 deraadt Exp $ PROG= installboot SRCS= installboot.c util.c @@ -8,7 +8,7 @@ CPPFLAGS= -I${.CURDIR} LDADD= -lutil DPADD= ${LIBUTIL} -LDSTATIC= -static +LDSTATIC= ${STATIC} .if ${MACHINE} == "alpha" SRCS += stubs.c |