X-Git-Url: http://git.rot13.org/?p=BackupPC.git;a=blobdiff_plain;f=configure.pl;h=2142fc1ee39823f3b7d0adc8f8db95116c2fcf87;hp=c78e7a32b9e28378e170b5e06a2a1ea24b55c675;hb=d39da46b2584e55a2e6b42b63491a5e55cfd1554;hpb=1ce7d1541ea1279aaa0a75c16986a3fd40b608ec diff --git a/configure.pl b/configure.pl index c78e7a3..2142fc1 100755 --- a/configure.pl +++ b/configure.pl @@ -33,7 +33,7 @@ # #======================================================================== # -# Version 1.5.0, released 2 Aug 2002. +# Version __VERSION__, released __RELEASEDATE__. # # See http://backuppc.sourceforge.net. # @@ -356,7 +356,8 @@ exit unless prompt("--> Do you want to continue?", "y") =~ /y/i; # # Create install directories # -foreach my $dir ( qw(bin lib/BackupPC/Xfer lib/BackupPC/Zip doc) ) { +foreach my $dir ( qw(bin lib/BackupPC/Xfer lib/BackupPC/Zip + lib/BackupPC/Lang doc) ) { next if ( -d "$Conf{InstallDir}/$dir" ); mkpath("$Conf{InstallDir}/$dir", 0, 0775); if ( !-d "$Conf{InstallDir}/$dir" @@ -409,7 +410,9 @@ unlink("$Conf{InstallDir}/bin/BackupPC_queueAll"); printf("Installing library in $Conf{InstallDir}/lib\n"); foreach my $lib ( qw(BackupPC/Lib.pm BackupPC/FileZIO.pm BackupPC/Attrib.pm BackupPC/PoolWrite.pm BackupPC/Xfer/Tar.pm BackupPC/Xfer/Smb.pm - BackupPC/Zip/FileMember.pm) ) { + BackupPC/Zip/FileMember.pm + BackupPC/Lang/en.pm BackupPC/Lang/fr.pm + ) ) { InstallFile("lib/$lib", "$Conf{InstallDir}/lib/$lib", 0444); }