summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2021-07-24 22:44:40 (GMT)
committerGitHub <noreply@github.com>2021-07-24 22:44:40 (GMT)
commit4de56b3da3f709e61301d65cf67e068bc650d9eb (patch)
tree6f58bc4340bea48209d42ecfa20b5232f3e821a3 /lib
parent7be503964858691951320f13a9b5d28e450e3fad (diff)
parenteba110ad5b52dcd7f8cfcfddae03cc7fb9207781 (diff)
downloadlz4-4de56b3da3f709e61301d65cf67e068bc650d9eb.zip
lz4-4de56b3da3f709e61301d65cf67e068bc650d9eb.tar.gz
lz4-4de56b3da3f709e61301d65cf67e068bc650d9eb.tar.bz2
Merge pull request #1012 from eloj/print-install-dirs
Print target directories during 'make install'.
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile
index 45f33e4..5e4c711 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -181,7 +181,7 @@ liblz4.pc: liblz4.pc.in Makefile
install: lib liblz4.pc
$(INSTALL_DIR) $(DESTDIR)$(pkgconfigdir)/ $(DESTDIR)$(includedir)/ $(DESTDIR)$(libdir)/ $(DESTDIR)$(bindir)/
$(INSTALL_DATA) liblz4.pc $(DESTDIR)$(pkgconfigdir)/
- @echo Installing libraries
+ @echo Installing libraries in $(DESTDIR)$(libdir)
ifeq ($(BUILD_STATIC),yes)
$(INSTALL_DATA) liblz4.a $(DESTDIR)$(libdir)/liblz4.a
$(INSTALL_DATA) lz4frame_static.h $(DESTDIR)$(includedir)/lz4frame_static.h
@@ -199,7 +199,7 @@ install: lib liblz4.pc
$(LN_SF) liblz4.$(SHARED_EXT_VER) $(DESTDIR)$(libdir)/liblz4.$(SHARED_EXT)
endif
endif
- @echo Installing headers in $(includedir)
+ @echo Installing headers in $(DESTDIR)$(includedir)
$(INSTALL_DATA) lz4.h $(DESTDIR)$(includedir)/lz4.h
$(INSTALL_DATA) lz4hc.h $(DESTDIR)$(includedir)/lz4hc.h
$(INSTALL_DATA) lz4frame.h $(DESTDIR)$(includedir)/lz4frame.h