diff options
author | Tim Harder <radhermit@gmail.com> | 2015-02-18 00:25:26 -0500 |
---|---|---|
committer | Tim Harder <radhermit@gmail.com> | 2015-02-18 17:03:43 -0500 |
commit | 5067fa4c8c1067f99fdbddb02f66586febda6b07 (patch) | |
tree | 6fc0fea1046091a01c34a11d9ede64cbd586dfad /bin | |
parent | setup: return a generator instead of a list for _get_files() (diff) | |
download | pkgcore-5067fa4c8c1067f99fdbddb02f66586febda6b07.tar.gz pkgcore-5067fa4c8c1067f99fdbddb02f66586febda6b07.tar.bz2 pkgcore-5067fa4c8c1067f99fdbddb02f66586febda6b07.zip |
install bash files in /usr/lib/pkgcore instead of the python module
We don't need to duplicate these for every version of python we install
for especially once py3 support is re-added. Note that there is one
python script in the bash directory for dohtml, but it's always had
a generic shebang anyway.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/pwrapper | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/pwrapper b/bin/pwrapper index ecbc3ce76..505611371 100755 --- a/bin/pwrapper +++ b/bin/pwrapper @@ -31,6 +31,8 @@ if __name__ == '__main__': os.environ.update({ 'PKGCORE_SCRIPT_PATH': os.path.dirname(os.path.abspath(__file__)), + 'PKGCORE_BASH_PATH': os.path.join( + os.path.dirname(os.path.dirname(os.path.abspath(__file__))), 'bash'), 'PKGCORE_CONFIG_PATH': os.path.join( os.path.dirname(os.path.dirname(os.path.abspath(__file__))), 'config'), }) |