summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2018-02-06 18:15:05 +0100
committerChristoph Reiter <reiter.christoph@gmail.com>2018-02-06 18:15:05 +0100
commit05159327eb70a75bc876a2355f5f31c6d424c1d5 (patch)
tree12cccf173d680ccb3c165431fc15bcb07873e4bc
parent1de81a939711b9c2edb915b8bd9855ef9db12f02 (diff)
downloadpygobject-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.in1
-rwxr-xr-xsetup.py1
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
diff --git a/setup.py b/setup.py
index 96a0ceef..e5129e01 100755
--- a/setup.py
+++ b/setup.py
@@ -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():