Magellan Linux

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

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

revision 8673 by niro, Wed Jul 27 18:34:11 2011 UTC revision 9472 by niro, Thu Dec 1 18:46:32 2011 UTC
# Line 45  python_docompile() Line 45  python_docompile()
45   then   then
46   mconfigure $@ || die   mconfigure $@ || die
47   mmake || die   mmake || die
48     elif [[ -e install.py ]]
49     then
50     echo "install.py found - nothing to compile here."
51   else   else
52   mmake || die   mmake || die
53   fi   fi
# Line 58  python_doinstall() Line 61  python_doinstall()
61   elif [[ -e waf ]]   elif [[ -e waf ]]
62   then   then
63   python waf install --destdir=${BINDIR} $@ || die   python waf install --destdir=${BINDIR} $@ || die
64     elif [[ -e install.py ]]
65     then
66     python install.py --prefix=/usr --files-only --destdir=${BINDIR} $@ || die
67   else   else
68   mmake DESTDIR=${BINDIR} install || die   mmake DESTDIR=${BINDIR} install || die
69   fi   fi

Legend:
Removed from v.8673  
changed lines
  Added in v.9472