diff options
author | Ruediger Timm <rt@openoffice.org> | 2010-05-25 17:13:26 +0200 |
---|---|---|
committer | Ruediger Timm <rt@openoffice.org> | 2010-05-25 17:13:26 +0200 |
commit | b1e4920d78abdc470c496c1fd0c5abb2a398f28d (patch) | |
tree | d39b0952d95d4e0e73936f418f78c3f698e2ee46 | |
parent | 2379e44a85af09fb59de21f90cceb6f56fbf236c (diff) |
masterfix #i10000#, #i111360#: checkdeliver.pl's check for srcroot breaks on windows if srcroot points to a volume root dir (C:) because that is not a valid directory. The whole source directory detection should be reworked, for now just disable the check.
Notes
Notes:
split repo tag: postprocess_ooo/DEV300_m79
-rw-r--r-- | postprocess/checkdeliver/checkdeliver.pl | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/postprocess/checkdeliver/checkdeliver.pl b/postprocess/checkdeliver/checkdeliver.pl index 90a01be3a0a0..afd52ae0fec5 100644 --- a/postprocess/checkdeliver/checkdeliver.pl +++ b/postprocess/checkdeliver/checkdeliver.pl @@ -93,9 +93,6 @@ sub get_globals if ( ! ( $platform && $srcrootdir && $solverdir ) ) { die "Error: please set environment\n"; } - if ( ! -d $srcrootdir ) { - die "Error: cannot find source directory '$srcrootdir'\n"; - } if ( ! -d $solverdir ) { die "Error: cannot find solver directory '$solverdir'\n"; } |