diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-10 05:41:56 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-10 05:41:56 +0000 |
commit | be0f7c05d84732da3b88e45ab791375bfe417d3c (patch) | |
tree | 03e0a98112ad64d177fccc8696c0430d7e8cf09e /Makefile | |
parent | 2a47ca7e9a0657b3d18e3ef920594c400d9c5c39 (diff) |
Fix up naming of ld.so so every uses the same define. The top level
was using one name and the ld.so-1 dir was using another (they happened
to be the same). Fix that.
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -57,7 +57,6 @@ shared: $(LIBNAME) fi @rm -rf tmp ln -sf $(SHARED_FULLNAME) $(SHARED_MAJORNAME) - ln -sf $(SHARED_MAJORNAME) libc.so @$(MAKE) -C crypt shared @$(MAKE) -C libutil shared @$(MAKE) -C libm shared @@ -125,7 +124,6 @@ ifneq ($(DO_SHARED),) rm -rf $(INSTALL_DIR)/lib/libc.so install -m 755 $(SHARED_FULLNAME) $(INSTALL_DIR)/lib/ (cd $(INSTALL_DIR)/lib;ln -sf $(SHARED_FULLNAME) $(SHARED_MAJORNAME)) - (cd $(INSTALL_DIR)/lib;ln -sf $(SHARED_MAJORNAME) libc.so) # ldconfig is really not necessary, and impossible to cross #ifeq ($(INSTALL_DIR),) # /sbin/ldconfig -n $(INSTALL_DIR)/lib |