Skip to content

Commit

Permalink
mklove update: DESTDIR
Browse files Browse the repository at this point in the history
  • Loading branch information
edenhill committed Apr 7, 2014
1 parent 67cb26e commit 8e69c8c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mklove/Makefile.base
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ lib-install:
$(INSTALL) -d $$DESTDIR$(includedir)/$(PKGNAME) ; \
$(INSTALL) -d $$DESTDIR$(libdir) ; \
$(INSTALL) $(HDRS) $$DESTDIR$(includedir)/$(PKGNAME) ; \
$(INSTALL) $(LIBNAME).a $$DESTDIR/$(libdir) ; \
$(INSTALL) $(LIBNAME).so.$(LIBVER) $$DESTDIR/$(libdir) ; \
(cd $$DESTDIR/$(libdir) && ln -sf $(LIBNAME).so.$(LIBVER) $(LIBNAME).so)
$(INSTALL) $(LIBNAME).a $$DESTDIR$(libdir) ; \
$(INSTALL) $(LIBNAME).so.$(LIBVER) $$DESTDIR$(libdir) ; \
(cd $$DESTDIR$(libdir) && ln -sf $(LIBNAME).so.$(LIBVER) $(LIBNAME).so)

lib-uninstall:
@echo "$(MKL_YELLOW)Uninstall $(LIBNAME) from $$DESTDIR$(prefix)$(MKL_CLR_RESET)"
Expand All @@ -114,7 +114,7 @@ lib-uninstall:
bin-install:
@echo "$(MKL_YELLOW)Install $(BIN) to $$DESTDIR$(prefix)$(MKL_CLR_RESET)"
$(INSTALL) -d $$DESTDIR$(bindir) && \
$(INSTALL) $(BIN) $$DESTDIR/$(bindir)
$(INSTALL) $(BIN) $$DESTDIR$(bindir)

bin-uninstall:
@echo "$(MKL_YELLOW)Uninstall $(BIN) from $$DESTDIR$(prefix)$(MKL_CLR_RESET)"
Expand Down

0 comments on commit 8e69c8c

Please sign in to comment.