Commit 3f2b0516 authored by Federico Vaga's avatar Federico Vaga

sw:lib: bugfix symbolic link creation

Signed-off-by: Federico Vaga's avatarFederico Vaga <federico.vaga@cern.ch>
parent bbee11b8
......@@ -41,7 +41,7 @@ $(LIBSV): $(LIB)
$(CC) -shared -o $@ -Wl,--whole-archive,-soname,$@ $^ -Wl,--no-whole-archive
$(LIBS): $(LIBSV)
ln -s $@ $(shell echo $@ | grep -o -E ".*\.so")
ln -sf $< $@
clean:
rm -f $(LIB) $(LIBS) $(LIBSV) .depend *.o *~
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment