Author: bdrewery
Date: Sat Dec  5 18:56:21 2015
New Revision: 291864
URL: https://svnweb.freebsd.org/changeset/base/291864

Log:
  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

Modified:
  head/lib/libc/tests/ssp/Makefile

Modified: head/lib/libc/tests/ssp/Makefile
==============================================================================
--- head/lib/libc/tests/ssp/Makefile    Sat Dec  5 17:40:11 2015        
(r291863)
+++ head/lib/libc/tests/ssp/Makefile    Sat Dec  5 18:56:21 2015        
(r291864)
@@ -10,7 +10,7 @@ CFLAGS.h_raw+=        -fstack-protector-all -Ws
 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
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to