diff options
author | Roy Marples <roy@marples.name> | 2007-11-14 16:42:56 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-11-14 16:42:56 +0000 |
commit | a21512847558e2b46c21e970499b5ff75a920cb3 (patch) | |
tree | 4771727157f99731468c5c4f12ba8ff9066a9b46 /src | |
parent | ed20354fdbcf8e34f8346728390decc4cff302b1 (diff) |
Install our .so links to /usr/lib
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 51806056..c9eb2d45 100644 --- a/src/Makefile +++ b/src/Makefile @@ -140,10 +140,10 @@ links: $(ALL_LINKS) install: $(TARGET) install -m 0755 -d $(DESTDIR)/$(LIB) install -m 0755 $(LIB_TARGETS) $(DESTDIR)/$(LIB) - ln -sf $(LIBEINFOSO) $(DESTDIR)/$(LIB)/libeinfo.so - ln -sf $(LIBRCSO) $(DESTDIR)/$(LIB)/librc.so install -m 0755 -d $(DESTDIR)/usr/$(LIB) install -m 0644 $(ULIB_TARGETS) $(DESTDIR)/usr/$(LIB) + ln -sf /$(LIB)/$(LIBEINFOSO) $(DESTDIR)/usr/$(LIB)/libeinfo.so + ln -sf /$(LIB)/$(LIBRCSO) $(DESTDIR)/usr/$(LIB)/librc.so install -m 0755 -d $(DESTDIR)/usr/include install -m 0644 einfo.h rc.h $(DESTDIR)/usr/include install -m 0755 -d $(DESTDIR)/bin |