summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorEric Siegerman <pub08-git@davor.org>2017-02-15 02:58:08 (GMT)
committerEric Siegerman <pub08-git@davor.org>2017-02-15 03:12:26 (GMT)
commiteb51b2b8d9254add9d72eb26064518d5bcf1e9ee (patch)
treeda222b5ee91d8fc27af5ce3e7670d36f0def6572 /lib
parent69dbafc1c4806f6c05e28c01117799087f498a2f (diff)
downloadlz4-eb51b2b8d9254add9d72eb26064518d5bcf1e9ee.zip
lz4-eb51b2b8d9254add9d72eb26064518d5bcf1e9ee.tar.gz
lz4-eb51b2b8d9254add9d72eb26064518d5bcf1e9ee.tar.bz2
Explicitly create $(DESTDIR)$(LIBDIR)/ at install time
This is needed on systems where it isn't the parent of $(PKGCONFIGDIR), and so doesn't get created implicitly.
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile
index 7ba9ccb..c4bc7d2 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -143,7 +143,7 @@ liblz4.pc: liblz4.pc.in Makefile
$< >$@
install: lib liblz4.pc
- @$(INSTALL) -d -m 755 $(DESTDIR)$(PKGCONFIGDIR)/ $(DESTDIR)$(INCLUDEDIR)/
+ @$(INSTALL) -d -m 755 $(DESTDIR)$(PKGCONFIGDIR)/ $(DESTDIR)$(INCLUDEDIR)/ $(DESTDIR)$(LIBDIR)/
@$(INSTALL_DATA) liblz4.pc $(DESTDIR)$(PKGCONFIGDIR)/
@echo Installing libraries
ifeq ($(BUILD_STATIC),yes)