diff options
author | Juergen Daubert <jue@jue.li> | 2013-11-11 14:57:54 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2013-11-11 14:57:54 +0100 |
commit | 721747c969b49e61547d092cbcd81ee1cd5f1e3f (patch) | |
tree | 5b7d2e4bb861d34586a09d41ee27f11616f8b337 /python | |
parent | e369a5bf84af810b00986f0870e72dbfe325ba2a (diff) | |
download | opt-721747c969b49e61547d092cbcd81ee1cd5f1e3f.tar.gz opt-721747c969b49e61547d092cbcd81ee1cd5f1e3f.tar.xz |
python: explicit set permission mode of pyconfig.h to prevent footprint errors with unusual umask
Diffstat (limited to 'python')
-rw-r--r-- | python/Pkgfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/Pkgfile b/python/Pkgfile index ee7d386a3..7554d27e6 100644 --- a/python/Pkgfile +++ b/python/Pkgfile @@ -39,5 +39,5 @@ build () { rm $PKG/usr/lib/python/ctypes/macholib/README.ctypes mv $PKG/usr/include/python2.7/pyconfig{,-64}.h - cp $SRC/pyconfig.h $PKG/usr/include/python2.7/ + install -m 0644 $SRC/pyconfig.h $PKG/usr/include/python2.7/ } |