From: Wolfgang Bangerth Date: Wed, 23 May 2001 09:34:45 +0000 (+0000) Subject: Fix thinko: we give absolute paths to libs, so no need to specify -l X-Git-Tag: v8.0.0~19081 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6bba926038364237c9665ca97edcd0a416a8f021;p=dealii.git Fix thinko: we give absolute paths to libs, so no need to specify -l as well. git-svn-id: https://svn.dealii.org/trunk@4713 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/common/Make.global_options.in b/deal.II/common/Make.global_options.in index f4b0b19985..afd16ca34b 100644 --- a/deal.II/common/Make.global_options.in +++ b/deal.II/common/Make.global_options.in @@ -123,7 +123,7 @@ ifneq ($(with-multithreading),no) LIBPATH += -L$(ACE_ROOT)/ace lib-ACE = $(ACE_ROOT)/ace/libACE.so - LIBS += -l$(lib-ACE) + LIBS += $(lib-ACE) vpath %.a $(ACE_ROOT) endif