summaryrefslogtreecommitdiff
path: root/set_soenv.in
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2011-12-12 11:14:05 +0200
committerTor Lillqvist <tml@iki.fi>2011-12-12 12:08:42 +0200
commit13876ef22f42256ab575d5678b7a4165c7388076 (patch)
tree4a1fedd94e81158bb9417c7618c40d416452275a /set_soenv.in
parentabb06e33756e9a3cc5fd77d7b14bb2e7e7ec5b2f (diff)
We only support Cygwin Perl on Windows
Diffstat (limited to 'set_soenv.in')
-rwxr-xr-xset_soenv.in12
1 files changed, 2 insertions, 10 deletions
diff --git a/set_soenv.in b/set_soenv.in
index ea815b7f71ec..7c2e5fc6bb77 100755
--- a/set_soenv.in
+++ b/set_soenv.in
@@ -38,7 +38,7 @@ my ( $oldoutfile, $outfile, $bootfile, $newline, $comment,
$wps, $cur_dir, $par_dir, $I, $L, $tmp, $MINGW,
$platform,
$cygwinver, $empty, $no_ant, $no_gcc_include,
- $no_gxx_include, $warnfile, $Warning, $result, $unsetvars, $exportvars, $win_format_var, $perl_os, @mingw_lib_include_paths, $mingw_lib_include_path);
+ $no_gxx_include, $warnfile, $Warning, $result, $unsetvars, $exportvars, $win_format_var, @mingw_lib_include_paths, $mingw_lib_include_path);
#
#-------------------------------------------------
# IIb. Declaring environment values (constants).
@@ -146,11 +146,6 @@ print ("Setting up the environment for building LibreOffice $newline");
# V. Setting the environment variables/values.
#--------------------------------------------------
#
-# A. Checking the platform first.
-#
-# get perls idea for OS
-# needed to differentiate cygwin/native perl on windows
-$perl_os = $^O;
#
# B. Gathering information from the system.
@@ -798,9 +793,6 @@ if ( "@WITH_MOZILLA@" eq "YES" and "@BUILD_MOZAB@" ne "TRUE" and "@SYSTEM_MOZILL
{
print("Checking for prebuilt Mozilla libraries ...");
my $mozbinfile = $SRC_ROOT."/moz/zipped/";
- if ( $^O eq 'MSWin32' ) {
- chomp( $mozbinfile = qx{cygpath -d "$mozbinfile"} );
- }
$mozbinfile .= $OS.$COM.$CPU;
if ( -e $mozbinfile."inc.zip"
and -e $mozbinfile."lib.zip"
@@ -2137,7 +2129,7 @@ sub CheckPathName
#-------------------------------------------------------------
sub CheckPathExist
{ my $dir = $_[ 0 ];
- if ( !( -d $dir ) and $^O ne 'MSWin32' )
+ if ( !( -d $dir ) )
{ print ( "The directory $_[ 0 ] does not exist. Please create first.\n" );
exit 1;
}