diff options
author | 2017-06-02 20:03:54 +0000 | |
---|---|---|
committer | 2017-06-02 20:03:54 +0000 | |
commit | 7d80b82c4649617e84b7c8ed989d20d00b8a2c2e (patch) | |
tree | 38fbd64a9983ecc191ea0c42da964e7f65e64768 | |
parent | Fix an infinite loop in fortune(6). (diff) | |
download | wireguard-openbsd-7d80b82c4649617e84b7c8ed989d20d00b8a2c2e.tar.xz wireguard-openbsd-7d80b82c4649617e84b7c8ed989d20d00b8a2c2e.zip |
Use += instead of = for extra flag. Prompted by miod@
-rw-r--r-- | regress/lib/libm/fenv/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libm/fenv/Makefile b/regress/lib/libm/fenv/Makefile index 41e8afbdf90..556dcda29c9 100644 --- a/regress/lib/libm/fenv/Makefile +++ b/regress/lib/libm/fenv/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.2 2016/10/26 11:24:17 otto Exp $ +# $OpenBSD: Makefile,v 1.3 2017/06/02 20:03:54 otto Exp $ PROG=fenv -CFLAGS=-ffloat-store +CFLAGS+=-ffloat-store LDADD=-lm DPADD=${LIBM} |