[svn-r3039] Purpose:

Oops.
Description:
	Forgot to make the libraries static since we're not certain that
	they can be shared...
This commit is contained in:
Bill Wendling 2000-11-30 15:00:19 -05:00
parent 451ab02f4f
commit 0d62839e12

View File

@ -47,7 +47,7 @@ LT_STATIC_EXEC=@LT_STATIC_EXEC@
DYNAMIC_DIRS=@DYNAMIC_DIRS@
LT=$(top_builddir)/libtool
LT_COMPILE=$(LT) --mode=compile $(CXX) -dlopen self
LT_LINK_LIB=$(LT) --mode=link $(CXX) -rpath $(libdir)
LT_LINK_LIB=$(LT) --mode=link $(CXX) -static -rpath $(libdir)
LT_LINK_EXE=$(LT) --mode=link $(CXX) $(LT_STATIC_EXEC) -dlopen self -static -rpath $(bindir) $(DYNAMIC_DIRS)
LT_RUN=$(LT) --mode=execute
LT_INSTALL_PROG=$(LT) --mode=install $(INSTALL_PROGRAM)