diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2017-08-18 17:37:01 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2017-08-18 17:38:44 +0100 |
commit | 4cc4859daf1521bfaa7516728dec68be55180b68 (patch) | |
tree | 0866aaa7ec19b67a11f880c8344b73e15c79faca | |
parent | 1abd76134dc09082cdd58cb73bf257d5e4f50820 (diff) |
meson: don't install -uninstalled.pc file
https://bugzilla.gnome.org/show_bug.cgi?id=786457
-rw-r--r-- | pkgconfig/meson.build | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgconfig/meson.build b/pkgconfig/meson.build index f10d572..8ed8299 100644 --- a/pkgconfig/meson.build +++ b/pkgconfig/meson.build @@ -17,11 +17,8 @@ pkg_install_dir = '@0@/pkgconfig'.format(get_option('libdir')) configure_file(input : 'gstreamer-rtsp-server.pc.in', output : 'gstreamer-rtsp-server-1.0.pc', configuration : pkgconf, - install_dir : pkg_install_dir, -) + install_dir : pkg_install_dir) configure_file(input : 'gstreamer-rtsp-server-uninstalled.pc.in', output : 'gstreamer-rtsp-server-1.0-uninstalled.pc', - configuration : pkgconf, - install_dir : pkg_install_dir -) + configuration : pkgconf) |