summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-06-16 09:39:41 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-06-16 09:39:41 +0000
commit99b798e28b5a02839372caa618f87d55d061dea7 (patch)
treebbcbfb2003e61f6bfe938f6b45cfdc2d62193746 /solenv
parente560ecdf03967a94f0517576b86e772a3192c02b (diff)
#100000# corrected behaviour for build -s from a link
Diffstat (limited to 'solenv')
-rw-r--r--solenv/bin/build.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/solenv/bin/build.pl b/solenv/bin/build.pl
index 3d8852e58a89..cf282f804937 100644
--- a/solenv/bin/build.pl
+++ b/solenv/bin/build.pl
@@ -5,9 +5,9 @@
#
# $RCSfile: build.pl,v $
#
-# $Revision: 1.140 $
+# $Revision: 1.141 $
#
-# last change: $Author: vg $ $Date: 2005-06-13 14:00:18 $
+# last change: $Author: vg $ $Date: 2005-06-16 10:39:41 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -104,7 +104,7 @@
( $script_name = $0 ) =~ s/^.*\b(\w+)\.pl$/$1/;
- $id_str = ' $Revision: 1.140 $ ';
+ $id_str = ' $Revision: 1.141 $ ';
$id_str =~ /Revision:\s+(\S+)\s+\$/
? ($script_rev = $1) : ($script_rev = "-");
@@ -2105,7 +2105,7 @@ sub checkout_current_module {
cwd();
print "\nBreaking link to module $module_name";
checkout_module($module_name);
- if (!-d $module_name) {
+ if (!-d $module_name && !$show) {
print_error("Cannot checkout $module_name");
};
my $action;