diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2018-02-06 18:15:05 +0100 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2018-02-06 18:15:05 +0100 |
commit | 05159327eb70a75bc876a2355f5f31c6d424c1d5 (patch) | |
tree | 12cccf173d680ccb3c165431fc15bcb07873e4bc | |
parent | 1de81a939711b9c2edb915b8bd9855ef9db12f02 (diff) | |
download | pygobject-05159327eb70a75bc876a2355f5f31c6d424c1d5.tar.gz |
build: remove libdir from the .pc file
It's unused afaics and in the distutils case we can't replicated
what autotools does, so better remove it.
-rw-r--r-- | pygobject-3.0.pc.in | 1 | ||||
-rwxr-xr-x | setup.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/pygobject-3.0.pc.in b/pygobject-3.0.pc.in index c54bd451..ca494231 100644 --- a/pygobject-3.0.pc.in +++ b/pygobject-3.0.pc.in @@ -3,7 +3,6 @@ exec_prefix=@exec_prefix@ includedir=@includedir@ datarootdir=@datarootdir@ datadir=@datadir@ -libdir=@libdir@ # you can use the --variable=pygobjectincludedir argument to # pkg-config to get this value. You might want to use this to @@ -725,7 +725,6 @@ class install_pkgconfig(Command): "includedir": "${prefix}/include", "datarootdir": "${prefix}/share", "datadir": "${datarootdir}", - "libdir": "", # XXX: we don't know it, ignore for now.. "VERSION": self.distribution.get_version(), } for key, value in config.items(): |