diff options
author | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2004-10-06 13:23:13 +0000 |
---|---|---|
committer | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2004-10-06 13:23:13 +0000 |
commit | 065f1de65d61f6fa0dc10e7e4d461aab1dde6d3d (patch) | |
tree | 9fada0cf1779c86cdc7cee7848357c086e148814 | |
parent | 485632ceac9407b733fadd3280058162f3762453 (diff) |
Peter S. Mazinger writes:
Corrects libpthread_db name (I do not know why libpthread_db.so uses
libpthread_db.so.1 instead of libpthread_db.so.$(MAJOR_VERSION) as soname)
Note by Jocke:
I don't known either but until then this is the right thing to do.
-rw-r--r-- | libpthread/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/Makefile b/libpthread/Makefile index ef68cfa69..6938b0387 100644 --- a/libpthread/Makefile +++ b/libpthread/Makefile @@ -101,7 +101,7 @@ shared: all $(END_FILES); \ $(INSTALL) -d $(TOPDIR)lib; \ $(RM) $(TOPDIR)lib/$(LIBTHREAD_DB_SHARED_FULLNAME) \ - $(TOPDIR)lib/$(LIBTHREAD_DB_SHARED).$(MAJOR_VERSION); \ + $(TOPDIR)lib/$(LIBTHREAD_DB_SHARED).1; \ $(INSTALL) -m 644 $(LIBTHREAD_DB_SHARED_FULLNAME) $(TOPDIR)lib; \ $(LN) -sf $(LIBTHREAD_DB_SHARED_FULLNAME) \ $(TOPDIR)lib/$(LIBTHREAD_DB_SHARED); \ |