summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbrad <brad@openbsd.org>2003-10-19 22:20:37 +0000
committerbrad <brad@openbsd.org>2003-10-19 22:20:37 +0000
commita2ea8c362e3da534e8d88a43bf217920b2c2d832 (patch)
treef77d2bb0c5f62a4786773cf4f83f0ce92ba353b2
parentUse defines instead of magic constants for more IPL_ stuff, also sort (diff)
downloadwireguard-openbsd-a2ea8c362e3da534e8d88a43bf217920b2c2d832.tar.xz
wireguard-openbsd-a2ea8c362e3da534e8d88a43bf217920b2c2d832.zip
fix installation of DEBUGLIBS libcurses symlink.
-- From: tholo@
-rw-r--r--lib/libcurses/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcurses/Makefile b/lib/libcurses/Makefile
index e558c893bb0..da19e7118eb 100644
--- a/lib/libcurses/Makefile
+++ b/lib/libcurses/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.53 2003/05/19 19:05:06 millert Exp $
+# $OpenBSD: Makefile,v 1.54 2003/10/19 22:20:37 brad Exp $
# Uncomment this to enable tracing in libcurses
#CURSESTRACE=-DTRACE
@@ -256,7 +256,7 @@ afterinstall:
.if (${DEBUGLIBS:L} == "yes")
-cd ${DESTDIR}${LIBDIR}/debug; \
ln -f lib${LIB}.a lib`echo ${LIB} | sed 's/curses/termlib/'`.a; \
- ln -f lib${LIB}.a lib`echo ${LIB} | sed 's/curses/termcap/'`.a
+ ln -f lib${LIB}.a lib`echo ${LIB} | sed 's/curses/termcap/'`.a; \
ln -f lib${LIB}.a lib`echo ${LIB} | sed 's/curses/ncurses/'`.a
.endif