diff options
author | Carl Worth <cworth@cworth.org> | 2009-11-30 20:00:31 -0800 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2009-11-30 20:00:31 -0800 |
commit | 64e61146ecf6cde01a72d95f905f8d3790b78b58 (patch) | |
tree | a447ef6760f8f69dcb3b79c4f1667d64d0192fe3 /Makefile.am | |
parent | 1e50b971bf7273f958e11cbcf3dc07a6fab04335 (diff) |
Install .pc file in $libdir where it belongs (not $datadir).
The .pc file was previously being installed in ${prefix}/share/pkgconfig
but all other modules install their .pc files to ${prefix}/lib/pkgconfig
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 1e07014..c1f7eb8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -29,7 +29,7 @@ dist_doc_DATA = INSTALL install-data-hook: rm -f $(DESTDIR)$(aclocaldir)/xorgversion.m4 -pkgconfigdir = $(datadir)/pkgconfig +pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = xorg-macros.pc EXTRA_DIST = xorg-macros.pc.in |