~dinda/+junk/dt_test_error

« back to all changes in this revision

Viewing changes to make_html

  • Committer: Belinda Lopez
  • Date: 2011-02-25 14:35:09 UTC
  • Revision ID: dinda@ubuntu.com-20110225143509-8qky3s06056pat5w
corected much docbook formatting

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
. ./environment
4
 
 
5
 
LINGUAS=$(if test -r ./LINGUAS; then grep -v "^\#" ./LINGUAS; fi)
6
 
 
7
 
for lingua in $LINGUAS ; 
8
 
do 
9
 
        echo "\nMAKING HTML FOR LANGUAGE: $lingua"; 
10
 
    make html LANG=$lingua;
11
 
    if [ $MAKEOMFSFORHTML = "yes" ]; then
12
 
        make omf-html LANG=$lingua;
13
 
    fi
14
 
done