diff options
author | midipix <writeonce@midipix.org> | 2018-07-18 05:23:28 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-08-05 05:58:39 -0400 |
commit | 5495f48493672cf0e2b0bb40d0e88de9e0dc117e (patch) | |
tree | a167877aa5badf783efdb30bb58614d975e8ec3d /sofort | |
parent | 82ec38545a81690a51f7a7057fbd520aa0723f35 (diff) | |
download | ntapi-5495f48493672cf0e2b0bb40d0e88de9e0dc117e.tar.bz2 ntapi-5495f48493672cf0e2b0bb40d0e88de9e0dc117e.tar.xz |
build system: fix shared/static install target dependencies on install-pkgconf.
Diffstat (limited to 'sofort')
-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 |