Changeset 3609


Ignore:
Timestamp:
2002-12-02T14:13:41+13:00 (21 years ago)
Author:
sjboddie
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/bin/script/create_distributions.pl

    r3127 r3609  
    4747
    4848# temporary working directory
    49 my $tmpdir = '/tmp/sjboddie';
     49my $tmpdir = '/tmp';
    5050
    5151# docs directory - up-to-date copy of everything to go in the docs directory
     
    159159    # docs directory and README.TXT
    160160#    &install_docs ($windows_dist_dir, 1); -- just README.TXT for windows web installation
    161     &util::cp (&util::filename_cat($docdir, "README.TXT"), $windows_dist_dir);
     161    &util::cp (&util::filename_cat($docdir, "READMEen.TXT"), $windows_dist_dir);
     162    &util::cp (&util::filename_cat($docdir, "READMEfr.TXT"), $windows_dist_dir);
    162163
    163164    # gsdl directory
     
    268269
    269270# isweb is 1 if it's one of the web distributions (i.e. if we don't
    270 # want to install the manual) - this shouldn't be called at all for
     271# want to install the manuals) - this shouldn't be called at all for
    271272# windows web installation as it doesn't use docs at all (not much
    272273# point for self-extracting exe).
     
    276277    # docs directory, README.TXT, COPYING and Support.htm
    277278    &util::cp_r (&util::filename_cat($docdir, "docs"), $install_dir);
    278     &util::cp (&util::filename_cat($docdir, "README.TXT"), $install_dir);
     279    &util::cp (&util::filename_cat($docdir, "READMEen.TXT"), $install_dir);
     280    &util::cp (&util::filename_cat($docdir, "READMEfr.TXT"), $install_dir);
    279281    &util::cp (&util::filename_cat($docdir, "COPYING"), $install_dir);
    280282    &util::cp (&util::filename_cat($docdir, "Support.htm"), $install_dir);
    281283    # don't want manuals for web distributions
    282284    if ($isweb) {
    283     my $manfile = &util::filename_cat ($install_dir, "docs", "User.pdf");
     285    my $manfile = &util::filename_cat ($install_dir, "docs", "User-en.pdf");
    284286    &util::rm ($manfile) if -e $manfile;
    285     $manfile = &util::filename_cat ($install_dir, "docs", "Install.pdf");
     287    $manfile = &util::filename_cat ($install_dir, "docs", "Install-en.pdf");
    286288    &util::rm ($manfile) if -e $manfile;
    287     $manfile = &util::filename_cat ($install_dir, "docs", "Developer.pdf");
     289    $manfile = &util::filename_cat ($install_dir, "docs", "Developer-en.pdf");
     290    &util::rm ($manfile) if -e $manfile;
     291    $manfile = &util::filename_cat ($install_dir, "docs", "Paper-en.pdf");
     292    &util::rm ($manfile) if -e $manfile;
     293    my $manfile = &util::filename_cat ($install_dir, "docs", "User-fr.pdf");
     294    &util::rm ($manfile) if -e $manfile;
     295    $manfile = &util::filename_cat ($install_dir, "docs", "Install-fr.pdf");
     296    &util::rm ($manfile) if -e $manfile;
     297    $manfile = &util::filename_cat ($install_dir, "docs", "Developer-fr.pdf");
     298    &util::rm ($manfile) if -e $manfile;
     299    $manfile = &util::filename_cat ($install_dir, "docs", "Paper-fr.pdf");
    288300    &util::rm ($manfile) if -e $manfile;
    289301    }
Note: See TracChangeset for help on using the changeset viewer.