diff options
author | Matthew Dempsky <matthew@cvs.openbsd.org> | 2012-08-16 19:59:51 +0000 |
---|---|---|
committer | Matthew Dempsky <matthew@cvs.openbsd.org> | 2012-08-16 19:59:51 +0000 |
commit | 0d231624728492568fa96a9513bd99b57bca1daf (patch) | |
tree | 7078c22ba6b18245229b895d3d57e3733e8dd4bd /regress | |
parent | b6e7694448cc7123c45b85c7667ed5af21f789a0 (diff) |
turd polish: use LDSTATIC=${STATIC} instead of LDFLAGS+=-static
Diffstat (limited to 'regress')
-rw-r--r-- | regress/libexec/ld.so/randomdata/prog-static/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/libexec/ld.so/randomdata/prog-static/Makefile b/regress/libexec/ld.so/randomdata/prog-static/Makefile index 0f44280a5ad..bcd93da37d9 100644 --- a/regress/libexec/ld.so/randomdata/prog-static/Makefile +++ b/regress/libexec/ld.so/randomdata/prog-static/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.1 2012/08/16 17:21:05 matthew Exp $ +# $OpenBSD: Makefile,v 1.2 2012/08/16 19:59:50 matthew Exp $ PROG= prog +LDSTATIC= ${STATIC} LDADD+= -L$(LIBAADIR) -laa DPADD+= $(LIBAA) -LDFLAGS+= -static .PATH: $(.CURDIR)/../prog .include <bsd.regress.mk> |