diff options
author | 2016-07-04 18:01:44 +0000 | |
---|---|---|
committer | 2016-07-04 18:01:44 +0000 | |
commit | d46f7e051d3e787fbf4cf0fb6dca236f085cc9e7 (patch) | |
tree | 7c12a934b7ecf8dba2292eeff62ac06ed74b73c5 /lib/libmenu | |
parent | gcc's -fvisibility=hidden isn't the behavior we wanted when cleaning up (diff) | |
download | wireguard-openbsd-d46f7e051d3e787fbf4cf0fb6dca236f085cc9e7.tar.xz wireguard-openbsd-d46f7e051d3e787fbf4cf0fb6dca236f085cc9e7.zip |
DEBUGLIBS has been broken since the gcc4 switch, so delete it. CFLAGS
contains -g by default anyway
problem noted by Edgar Pettijohn (edgar (at) pettijohn-web.com)
ok millert@ kettenis@ deraadt@
Diffstat (limited to 'lib/libmenu')
-rw-r--r-- | lib/libmenu/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/libmenu/Makefile b/lib/libmenu/Makefile index 22053873706..c83e30fa7b7 100644 --- a/lib/libmenu/Makefile +++ b/lib/libmenu/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.16 2016/03/30 06:38:42 jmc Exp $ +# $OpenBSD: Makefile,v 1.17 2016/07/04 18:01:44 guenther Exp $ LIB= menu SRCS= m_attribs.c m_cursor.c m_driver.c m_format.c \ @@ -31,9 +31,5 @@ afterinstall: for i in ${_LIBS}; do \ ln -f $$i `echo $$i | sed 's/menu/menuw/'`; \ done -.if (${DEBUGLIBS:L} == "yes") - -cd ${DESTDIR}${LIBDIR}/debug; \ - ln -f lib${LIB}.a lib`echo ${LIB} | sed 's/menu/menuw/'`.a -.endif .include <bsd.lib.mk> |