Edgewall Software

Changes between Version 18 and Version 19 of Build Recipes


Ignore:
Timestamp:
Jul 15, 2008, 7:51:58 AM (16 years ago)
Author:
dlin.tw
Comment:

add Note about xmlns

Legend:

Unmodified
Added
Removed
Modified
  • Build Recipes

    v18 v19  
    1515{{{
    1616#!xml
    17 <build xmlns:python="http://bitten.cmlenz.net/tools/python">
     17<build xmlns:python="http://bitten.cmlenz.net/tools/python"
     18       xmlns:c="http://bitten.cmlenz.net/tools/c"
     19  >
     20  <step id="make" description="Make a C utility">
     21    <c:make target="compile" file="build/Makefile" />
     22  </step>
    1823
    1924  <step id="build" description="Compile to byte code">
     
    3035</build>
    3136}}}
     37Note, each command must have suitable xmlns(eg. xmlns:c), otherwise it will failed.
    3238
    3339== Recipe Command Binding ==