Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - cleanrock

Pages: [1]
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 :
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.

Pages: [1]
anything