1
Feature requests / .so links problem
« on: September 12, 2009, 08:01:16 am »
The create link command for the shared objects result in invalid links in archlinux package building system.
The problem is that the links target is an absolute path which dont work with archlinux package building system (and probably a few other package building systems).
I suggest you change the create link command to :
At the moment it is:
I.e. remove the first DESTLIBDIR.
The problem is that the links target is an absolute path which dont work with archlinux package building system (and probably a few other package building systems).
I suggest you change the create link command to :
Code: [Select]
INSTALL = && $(LN) $(LNFLAGS) $(LIB).$(VERSION) $(DESTLIBDIR)/$(LIB)
At the moment it is:
Code: [Select]
INSTALL = && $(LN) $(LNFLAGS) $(DESTLIBDIR)/$(LIB).$(VERSION) $(DESTLIBDIR)/$(LIB)
I.e. remove the first DESTLIBDIR.