diff options
author | midipix <writeonce@midipix.org> | 2018-07-18 05:23:28 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-07-18 05:23:28 -0400 |
commit | 6262552171f7f32d28bb54a6c783bdd6578efa8c (patch) | |
tree | 7fb482ecfdf8687d8395b768f310797bf20d896b /sofort | |
parent | 6de2620ace24ec7e721e08a3f06c0d4eb3a0a04a (diff) | |
download | slibtool-6262552171f7f32d28bb54a6c783bdd6578efa8c.tar.bz2 slibtool-6262552171f7f32d28bb54a6c783bdd6578efa8c.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 |