From 96fc628d1dd82f193bd2870402c79169c685f560 Mon Sep 17 00:00:00 2001 From: asv Date: Wed, 29 Jun 2005 06:39:31 +0000 Subject: [PATCH] install step is changed. symbolic link is made relative to bindir. --- src/Style/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Style/Makefile.in b/src/Style/Makefile.in index eede6fe41..1c79d2891 100644 --- a/src/Style/Makefile.in +++ b/src/Style/Makefile.in @@ -32,7 +32,7 @@ CPPFLAGS+=$(QT_INCLUDES) LDFLAGS+=$(QT_MT_LIBS) LIBS+= -# create $(top_builddir)/bin/salome/styles directory and copy libSalomeStyle.so there +# create $(top_builddir)/src/Session/styles directory and copy libSalomeStyle.so there LIB_PLUGINDIR = $(top_builddir)/src/Session/styles LIB_PLUGINLIB = $(patsubst %.la, $(LIB_PLUGINDIR)/%.so, $(filter %.la, $(LIB))) @@ -55,7 +55,7 @@ $(INSTALL_PLUGINDIR): mkdir -p $@ $(INSTALL_COPYLIB): - ln -sf $(patsubst %.la, $(libdir)/%.so, $(filter %.la, $(LIB))) $@ || true + (cd $(bindir)/styles; ln -sf $(patsubst %.la, ../../../lib/salome/%.so, $(filter %.la, $(LIB))) $@) || true @CONCLUDE@ -- 2.39.2