diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-10-27 01:24:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-10-27 01:24:09 +0000 |
commit | b8afa373b9b9017b0af30d5ed21d41c68b94640e (patch) | |
tree | 85ecacbe4899459c696511fbce7f4affe30b3b5a | |
parent | 8e12f3ea0cd1e2cc7ace916fa07736766e49e85d (diff) |
link against -lcurses until ld is fixed
-rw-r--r-- | gnu/lib/libg++/libg++/gperf/Makefile.bsd-wrapper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/lib/libg++/libg++/gperf/Makefile.bsd-wrapper b/gnu/lib/libg++/libg++/gperf/Makefile.bsd-wrapper index 59418b8ed77..6306f6de992 100644 --- a/gnu/lib/libg++/libg++/gperf/Makefile.bsd-wrapper +++ b/gnu/lib/libg++/libg++/gperf/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.6 1996/07/26 14:40:44 maja Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.7 1996/10/27 01:24:08 deraadt Exp $ .if defined(OBJMACHINE) OBJDIR= obj.${MACHINE} @@ -45,7 +45,7 @@ LDFLAGS+= -L$(STD_OBJDIR) -L$(GXX_OBJDIR) # if DESTDIR is set, then -nostdlib will be fed to g++, which will prevent # -lg++ to be automatically included. So add it here, no matter what. -LDADD+= -lg++ -lstdc++ +LDADD+= -lg++ -lstdc++ -lcurses all: $(STD_OBJDIR)/libstdc++.a $(GXX_OBJDIR)/libg++.a |