I've finally gotten around to taking a look at the latest incarnation of
the asiidoc project.

To fix:
* don't use shell find / shell ls -- this is unsafe and inefficient
 * it's unsafe if any (future) doc file has a character treated specially 
   by the shell
 * use $(wildcard *.txt) instead of $(shell ls *.txt)
 * use $(wildcard *.txt */*.txt) instead of a $(shell find) when it's known
   that two directory levels suffice
 * use := to avoid evaluating the wildcard more than once 

* Moving the french docs src outside of docs/src is not what I thought we 
  discussed.  Why this location?  docs/src/fr makes more sense to me.
 * if it's so your wildcards didn't get the two mixed together, then use
   $(filter-out)

Still left:
 * compatible html output names
 * debian/control.in / debian/configure for required packages
 * debian/rules / debian/*.files for html doc packages (in addition to pdf)
 * src/configure.in for compile-time required package tests
 * hook in to existing build system
Which parts of this do you need me to do?

Jeff

------------------------------------------------------------------------------
The modern datacenter depends on network connectivity to access resources
and provide services. The best practices for maximizing a physical server's
connectivity to a physical network are well understood - see how these
rules translate into the virtual world? 
http://p.sf.net/sfu/oracle-sfdevnlfb
_______________________________________________
Emc-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/emc-developers

Reply via email to