summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authorbdrewery <bdrewery@FreeBSD.org>2015-12-05 18:56:21 +0000
committerbdrewery <bdrewery@FreeBSD.org>2015-12-05 18:56:21 +0000
commit69a946104cf7381bb4f352826c16e80357ae8142 (patch)
tree0661ef913b0ca56b6f1da77b5c76b835608e41c8 /lib/libc
parent5c35c857c9c91fb1bffedf4bf172545a0ee10eb4 (diff)
downloadFreeBSD-src-69a946104cf7381bb4f352826c16e80357ae8142.zip
FreeBSD-src-69a946104cf7381bb4f352826c16e80357ae8142.tar.gz
Fix regression in r291738: This really wants -lssp.
The normal LIBADD is ssp_nonshared. This also had a DPADD on LIBSSP which does not actually exist, it is blank. Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/tests/ssp/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/tests/ssp/Makefile b/lib/libc/tests/ssp/Makefile
index 6055251..61caced 100644
--- a/lib/libc/tests/ssp/Makefile
+++ b/lib/libc/tests/ssp/Makefile
@@ -10,7 +10,7 @@ CFLAGS.h_raw+= -fstack-protector-all -Wstack-protector
CFLAGS.h_raw+= -fsanitize=bounds
.elif ${COMPILER_TYPE} == "gcc"
CFLAGS.h_raw+= --param ssp-buffer-size=1
-LIBADD+= ssp
+LDADD+= -lssp
.endif
NETBSD_ATF_TESTS_SH= ssp_test
OpenPOWER on IntegriCloud