Edgewall Software

Changes between Version 47 and Version 48 of Bitten Faq


Ignore:
Timestamp:
Sep 24, 2008, 9:15:31 PM (16 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Bitten Faq

    v47 v48  
    8888=== Compile a hello world program from ftp.gnu.org ===
    8989{{{
    90 TBC
     90<!--
     91Tested on fedora 9
     92-->
     93<build description="Building System"
     94      xmlns:sh="http://bitten.cmlenz.net/tools/sh">
     95 <step id="Getting hello-2.3.tar.gz from ftp.gnu.org">
     96   <sh:exec file="/usr/bin/wget" args=" ftp://ftp.gnu.org/pub/gnu/hello/hello-2\
     97.3.tar.gz"/>
     98 </step>
     99 <step id="untar hello-2.3.tar.gz">
     100   <sh:exec executable="gtar" args="xzvf hello-2.3.tar.gz"/>
     101 </step>
     102</build>
     103
    91104}}}