diff options
author | midipix <writeonce@midipix.org> | 2018-07-18 05:23:28 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-08-05 05:58:35 -0400 |
commit | 6720a3e86d3cfd4ab3e7c6c5ad3ee933ddde6ec4 (patch) | |
tree | b70a9ef83a1c97373b54d73b08f4133596a01eb3 | |
parent | 7284d5eff2d1aeebd5bb7e40151321c5d92f2f30 (diff) | |
download | bfirm-6720a3e86d3cfd4ab3e7c6c5ad3ee933ddde6ec4.tar.bz2 bfirm-6720a3e86d3cfd4ab3e7c6c5ad3ee933ddde6ec4.tar.xz |
build system: fix shared/static install target dependencies on install-pkgconf.
-rw-r--r-- | sofort/pkgconf.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sofort/pkgconf.mk b/sofort/pkgconf.mk index c28eae6..59a54e0 100644 --- a/sofort/pkgconf.mk +++ b/sofort/pkgconf.mk @@ -31,9 +31,9 @@ install-pkgconf: build/$(PACKAGE).pc mkdir -p $(DESTDIR)$(LIBDIR)/pkgconfig cp -p build/$(PACKAGE).pc $(DESTDIR)$(LIBDIR)/pkgconfig -package-install-shared: install-pkgconf +install-shared: install-pkgconf -package-install-static: install-pkgconf +install-static: install-pkgconf .PHONY: .pkgconf install-pkgconf |