Browse Source

please re-consider my patch since the line :

python --prefix $root/$prefix build install
will generate an error as --prefix is not a global option but an option
of install and it should be written as this :
python build install --prefix $root/$prefix 


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1219 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
b1cc2a3edb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      package/base/python/python-pkg.conf

+ 1
- 1
package/base/python/python-pkg.conf

@ -23,7 +23,7 @@
pyconfopt="--prefix $root/$prefix"
python_pkg_main() {
python setup.py $pyconfopt build install
python setup.py build install $pyconfopt
}
custmain=python_pkg_main

Loading…
Cancel
Save