diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-05-18 23:17:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-18 23:17:34 +0300 |
commit | 751ea3df72f336fb038739f61b3901e2ff8e10c0 (patch) | |
tree | c30b93d720bc1719645a00f2861c615ef07c119e /mesonbuild/build.py | |
parent | bf34b971121d46d54f8870cd1faf420d6c0bafe5 (diff) | |
parent | ac8319add14c80369f9d3e8e8c034a2fcb47ef9d (diff) | |
download | meson-751ea3df72f336fb038739f61b3901e2ff8e10c0.zip meson-751ea3df72f336fb038739f61b3901e2ff8e10c0.tar.gz meson-751ea3df72f336fb038739f61b3901e2ff8e10c0.tar.bz2 |
Merge pull request #7103 from dankegel/bug4027-rpath-remember
Let .pc files and LDFLAGS provide rpaths.
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r-- | mesonbuild/build.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py index fdfca73..360285e 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -512,6 +512,8 @@ class BuildTarget(Target): self.d_features = {} self.pic = False self.pie = False + # Track build_rpath entries so we can remove them at install time + self.rpath_dirs_to_remove = set() # Sources can be: # 1. Pre-existing source files in the source tree # 2. Pre-existing sources generated by configure_file in the build tree |