diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-23 22:03:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-23 22:03:14 +0200 |
commit | 4c9c14121fee9f733ab1f731b87a6714338174c6 (patch) | |
tree | 378eb2fb05d3f19dc57f58b9257b4d48a3cfa907 /mesonbuild/backend/backends.py | |
parent | 8ec9b0a71ffa1043b17a11e594219971c9288600 (diff) | |
parent | 7d6f628ed4c3c3dca32bef01b2581f2e9bcde189 (diff) | |
download | meson-4c9c14121fee9f733ab1f731b87a6714338174c6.zip meson-4c9c14121fee9f733ab1f731b87a6714338174c6.tar.gz meson-4c9c14121fee9f733ab1f731b87a6714338174c6.tar.bz2 |
Merge pull request #1302 from centricular/install-mode
Support file perms for install_data and install_subdir
Diffstat (limited to 'mesonbuild/backend/backends.py')
-rw-r--r-- | mesonbuild/backend/backends.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py index e46c2c5..6f8a50e 100644 --- a/mesonbuild/backend/backends.py +++ b/mesonbuild/backend/backends.py @@ -459,7 +459,8 @@ class Backend: mfobj['projects'] = self.build.dep_manifest with open(ifilename, 'w') as f: f.write(json.dumps(mfobj)) - d.data.append([ifilename, ofilename]) + # Copy file from, to, and with mode unchanged + d.data.append([ifilename, ofilename, None]) def get_regen_filelist(self): '''List of all files whose alteration means that the build |