diff options
author | midipix <writeonce@midipix.org> | 2018-07-18 05:23:28 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-08-05 05:58:45 -0400 |
commit | 12bcb02dcc1cd8b9ee9e0ea31435d08ffaf37db8 (patch) | |
tree | d9b84f0037dd7acdfd9466094bcf31f1d1b55a5e | |
parent | f0114e4cbc7255be1c2b0e8d20ca581fa3339aec (diff) | |
download | sofort-12bcb02dcc1cd8b9ee9e0ea31435d08ffaf37db8.tar.bz2 sofort-12bcb02dcc1cd8b9ee9e0ea31435d08ffaf37db8.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 |