Subversion Repositories camp_sysinfo_client_3

Rev

Rev 23 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23 Rev 24
Line 1... Line 1...
1
#!/usr/bin/env perl
1
#!/usr/bin/env perl
2
 
2
 
3
use warnings;
3
use warnings;
4
 
4
 
5
$main::VERSION = '1.1.1';
5
$main::VERSION = '1.1.2';
6
 
6
 
7
# find our location and use it for searching for libraries
7
# find our location and use it for searching for libraries
8
BEGIN {
8
BEGIN {
9
   use FindBin;
9
   use FindBin;
10
   use File::Spec;
10
   use File::Spec;
Line 153... Line 153...
153
if ( $os && &yesno( "This appears to be an $os system, may I automatically set up a few things" ) ) {
153
if ( $os && &yesno( "This appears to be an $os system, may I automatically set up a few things" ) ) {
154
   require "$os.pm";
154
   require "$os.pm";
155
   &systemSpecificInstall();
155
   &systemSpecificInstall();
156
}
156
}
157
 
157
 
158
exec( "$binDir/configure.pl" ) if &yesno( "Would you like to configure the package now? " );
158
exec( "perl $binDir/configure.pl" ) if &yesno( "Would you like to configure the package now? " );
159
 
159