| Hi Michael,
I'm not sure if some of the changes you checked into CVS for the 
SConstruct file are as you are intended, or at least, I'd like to 
verify.  There's a block of code that come after a for loop that isn't 
indent indented.  i.e.
    for filename in pathnames:
    basename, extension = os.path.splitext(filename)
    if extension in ['.exe', '.dll', '.so']:
        os.system('strip %s' % filename)
        print "Stripped",filename
    print
    print "Creating archive..."
    archive = zipfile.ZipFile("csound5/" + zipfilename, "w", 
zipfile.ZIP_DEFLATED)
    pathnames.sort()
also, this code for the refman.pdf:
    refmanPdf = commonEnvironment.Command('doc/latex/refman.tex', 
'Doxyfile', ['doxygen $SOURCE'])
    zipDependencies.append(refmanPdf)
    csoundPdf = commonEnvironment.Command('refman.pdf', 
'doc/latex/refman.tex', ['pdflatex --include-directory=doc/latex 
--interaction=batchmode --job-name=csound $SOURCE'])
    zipDependencies.append(csoundPdf)
   
doesn't seem correct, as it looks like only one pdf file is being 
generated.  Or perhaps I'm reading this part incorrectly?
Thanks,
steven |