Magellan Linux

Diff of /branches/R11-stable/include/python.sminc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 6882 by niro, Thu Sep 23 18:16:10 2010 UTC revision 8121 by niro, Tue Jul 12 17:16:31 2011 UTC
# Line 31  python_src_compile() Line 31  python_src_compile()
31   if [[ -e setup.py ]]   if [[ -e setup.py ]]
32   then   then
33   python setup.py build "$@" || die   python setup.py build "$@" || die
34     elif [[ -e waf ]]
35     then
36     python waf configure --prefix=/usr "$@" || die
37     python waf build "$@" || die
38   elif [[ -e configure ]]   elif [[ -e configure ]]
39   then   then
40   mconfigure "$@" || die   mconfigure "$@" || die
# Line 47  python_src_install() Line 51  python_src_install()
51   if [[ -e setup.py ]]   if [[ -e setup.py ]]
52   then   then
53   python setup.py install --no-compile --root ${BINDIR} "$@" || die   python setup.py install --no-compile --root ${BINDIR} "$@" || die
54     elif [[ -e waf ]]
55     then
56     python waf install --destdir="${BINDIR}" "$@" || die
57   else   else
58   mmake DESTDIR=${BINDIR} install || die   mmake DESTDIR=${BINDIR} install || die
59   fi   fi

Legend:
Removed from v.6882  
changed lines
  Added in v.8121