From 72b64d8618483490db95616028e047db86055a1f Mon Sep 17 00:00:00 2001 From: paulc Date: Fri, 18 Mar 2005 18:23:48 +0000 Subject: [PATCH] Fixed bug in library path. git-svn-id: http://yate.null.ro/svn/yate/trunk@261 acf43c95-373e-0410-b603-e72c3f656dc1 --- engine/Makefile.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/engine/Makefile.in b/engine/Makefile.in index a8863aab..d8ea50bb 100644 --- a/engine/Makefile.in +++ b/engine/Makefile.in @@ -15,7 +15,7 @@ LDFLAGS:= LDCONFIG:=true MKDEPS := ../config.status -YLIB:= ../libyate.so.@PACKAGE_VERSION@ +YLIB:= libyate.so.@PACKAGE_VERSION@ EINC := @top_srcdir@/yatengine.h PINC := @top_srcdir@/yatephone.h LIBS := @@ -41,7 +41,7 @@ moddir = @libdir@/yate confdir = @sysconfdir@/yate .PHONY: all -all: $(YLIB) +all: ../$(YLIB) .PHONY: clean clean: @@ -49,7 +49,7 @@ clean: .PHONY: strip strip: all - -strip --strip-debug --discard-locals $(YLIB) + -strip --strip-debug --discard-locals ../$(YLIB) Engine.o: @srcdir@/Engine.cpp $(MKDEPS) $(EINC) ../yateversn.h ../yatepaths.h $(COMPILE) -c $< @@ -72,5 +72,5 @@ Thread.o: @srcdir@/Thread.cpp $(MKDEPS) $(EINC) Makefile: @srcdir@/Makefile.in $(MKDEPS) cd .. && ./config.status -$(YLIB): $(LIBOBJS) $(LIBS) - $(LINK) -shared -o $@ -Wl,--soname=$@ $(LIBTHR) $^ $(LIBAUX) +../$(YLIB): $(LIBOBJS) $(LIBS) + $(LINK) -shared -o $@ -Wl,--soname=$(YLIB) $(LIBTHR) $^ $(LIBAUX)