Magellan Linux

Diff of /trunk/include/python.sminc

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

revision 29818 by niro, Fri Oct 13 08:08:39 2017 UTC revision 29819 by niro, Fri Oct 13 08:33:10 2017 UTC
# Line 72  python_docompile() Line 72  python_docompile()
72   ${MAGE_PYTHON_EXEC} waf build $@ || die   ${MAGE_PYTHON_EXEC} waf build $@ || die
73   elif [[ -e configure ]]   elif [[ -e configure ]]
74   then   then
75   mconfigure $@ || die   if [[ ${MULTILIB_BUILD} = true ]] && [[ ! -z $(typeset -f oldmconfigure) ]]  && [[ ! -z $(typeset -f oldmmake) ]]
76   mmake || die   then
77     oldmconfigure $@ || die
78     oldmmake || die
79     else
80     mconfigure $@ || die
81     mmake || die
82     fi
83   elif [[ -e install.py ]]   elif [[ -e install.py ]]
84   then   then
85   echo "install.py found - nothing to compile here."   echo "install.py found - nothing to compile here."
# Line 94  python_doinstall() Line 100  python_doinstall()
100   then   then
101   ${MAGE_PYTHON_EXEC} install.py --prefix=/usr --files-only --destdir=${BINDIR} $@ || die   ${MAGE_PYTHON_EXEC} install.py --prefix=/usr --files-only --destdir=${BINDIR} $@ || die
102   else   else
103   mmake DESTDIR=${BINDIR} install || die   if [[ ${MULTILIB_BUILD} = true ]] && [[ ! -z $(typeset -f oldmconfigure) ]]  && [[ ! -z $(typeset -f oldmmake) ]]
104     then
105     oldmmake DESTDIR=${BINDIR} install || die
106     else
107     mmake DESTDIR=${BINDIR} install || die
108     fi
109   fi   fi
110  }  }
111    

Legend:
Removed from v.29818  
changed lines
  Added in v.29819