From eb51b2b8d9254add9d72eb26064518d5bcf1e9ee Mon Sep 17 00:00:00 2001 From: Eric Siegerman Date: Tue, 14 Feb 2017 21:58:08 -0500 Subject: [PATCH] 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. --- lib/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.7.4