diff options
author | Roland McGrath <roland@gnu.org> | 1999-02-17 04:58:46 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-02-17 04:58:46 +0000 |
commit | 166c7f55e1cb27e5b7e38463743c6ae88920b8e4 (patch) | |
tree | 2704270259315b548170225a7cfd01ad7595555a | |
parent | c5def164fd8f569e3ae463a8a1c38d76cb10f9db (diff) |
1999-02-16 Roland McGrath <roland@baalperazim.frob.com>
* Makeconf (install): Fix typo in Thomas's last change.
($(libdir)/$(libname).so): Depend on ....so.$(hurd-version).
-rw-r--r-- | Makeconf | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -182,7 +182,7 @@ ifeq ($(makemode),library) all: libs install libs: add-to-librecord add-to-librecord: $(targets) -install: $(libdir) $(includedir)/$(installhdrsubdir) $(libdir)/$(libname).so.$(hurd-version $(addprefix $(libdir)/,$(targets)) $(addprefix $(includedir)/$(installhdrsubdir)/,$(installhdrs)) +install: $(libdir) $(includedir)/$(installhdrsubdir) $(libdir)/$(libname).so.$(hurd-version) $(addprefix $(libdir)/,$(targets)) $(addprefix $(includedir)/$(installhdrsubdir)/,$(installhdrs)) install-headers: $(includedir)/$(installhdrsubdir) $(addprefix $(includedir)/$(installhdrsubdir)/,$(installhdrs)) @@ -207,11 +207,11 @@ $(addprefix $(libdir)/$(libname),_p.a .a): $(libdir)/%: % $(INSTALL_DATA) $< $@ $(RANLIB) $@ -$(libdir)/$(libname).so.$(hurd-version): $(libname).so +$(libdir)/$(libname).so.$(hurd-version): $(libname).so.$(hurd-version) $(INSTALL_DATA) $< $@ -$(libdir)/$(libname).so: - ln -f -s $(libname).so.$(hurd-version) $@ +$(libdir)/$(libname).so: $(libdir)/$(libname).so.$(hurd-version) + ln -f -s $(<F) $@ $(addprefix $(includedir)/$(installhdrsubdir)/,$(installhdrs)): $(includedir)/$(installhdrsubdir)/%: % $(INSTALL_DATA) $< $@ |