gcl-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gcl-devel] Re: [Axiom-developer] Re: NULL_OR_ON_C_STACK macro invalid


From: Gabriel Dos Reis
Subject: [Gcl-devel] Re: [Axiom-developer] Re: NULL_OR_ON_C_STACK macro invalid
Date: 18 Aug 2006 19:03:13 +0200

"Bill Page" <address@hidden> writes:

| On August 18, 2006 10:36 AM Ralf Hemmecke wrote:
| > 
| > On 08/18/2006 04:14 PM, Camm Maguire wrote:
| > > ... 
| > /fix/t1/camm/debian/axiom/build-improvements/build/scripts/doc
| > ument: line 24: -delay: command not found
| > > 
| > > 
| > > What is t8?
| > 
| > If you look at build/scripts/document you'll find a lie that 
| > looks like
| > 
| >   $tangle -t8 $FILE.pamphlet >$FILE
| > 
| > Obviously your $tangle variable expands to nothing. Something 
| > wrong with "configure", because build/scripts/document is
| > generated during 
| > ./configure.
| >
| 
| This did not happen in my copy of build-improvements from
| August 15. In the 'documents' script I see:
| 
| address@hidden axiom.build-improvements]$ ls -l
| build/scripts/document
| -rwxrwxr-x    1 page     page          748 Aug 15 20:57
| build/scripts/document
| 
| address@hidden axiom.build-improvements]$ cat build/scripts/document
| #!/bin/sh
| latex=latex
| tangle=notangle
| weave=noweave

This is because configure found:
   * latex in your build environment
   * noweb in your build environment

and consequently substituted those values in src/scripts/document.in,
producing build/scripts/document.

src/scripts/document.in reads

    #!/bin/sh
    address@hidden@
    address@hidden@
    address@hidden@

    if [ "$#" = "3" ]; then
     REDIRECT=$2
     FILE=`basename $3 .pamphlet`
     $tangle -t8 $FILE.pamphlet >$FILE
     $weave -delay $FILE.pamphlet >$FILE.tex
     $latex --interaction nonstopmode $FILE.tex >$REDIRECT
     $latex --interaction nonstopmode $FILE.tex >$REDIRECT
     rm -f $FILE~
     rm -f $FILE.pamphlet~
     rm -f $FILE.log
     rm -f $FILE.tex
     rm -f $FILE.toc
     rm -f $FILE.aux
     exit 0
    fi
    if [ "$#" = "1" ]; then
     FILE=`basename $1 .pamphlet`
     $tangle -t8 $FILE.pamphlet >$FILE
     $weave -delay $FILE.pamphlet >$FILE.tex
     $latex $FILE.tex 
     $latex $FILE.tex
     rm -f $FILE~
     rm -f $FILE.pamphlet~
     rm -f $FILE.log
     rm -f $FILE.tex
     rm -f $FILE.toc
     rm -f $FILE.aux
     exit 0
    fi
    echo "document [ -o redirect ] pamphlet"



-- Gaby




reply via email to

[Prev in Thread] Current Thread [Next in Thread]