[Libreoffice-commits] .: solenv/bin

Thomas Klausner tklausner at kemper.freedesktop.org
Thu Nov 4 07:46:29 PDT 2010


 solenv/bin/build.pl |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit e23930ccc3f7bbe298097cbf62d8c739713cb1ec
Author: Thomas Klausner <wiz at NetBSD.org>
Date:   Thu Nov 4 15:45:11 2010 +0100

    ENV_SCRIPT contains .sh, don't append it. Use only ASCII chars in messages.

diff --git a/solenv/bin/build.pl b/solenv/bin/build.pl
index 506c345..0769862 100755
--- a/solenv/bin/build.pl
+++ b/solenv/bin/build.pl
@@ -1741,7 +1741,7 @@ sub cancel_build {
     print "\n";
     print "" . $ENV{'OOO_SHELL'} . "\n";
     print "cd " . $ENV{'SRC_ROOT'} . "\n";
-    print "source ./" . $ENV{'ENV_SCRIPT'} . ".sh\n";
+    print "source ./" . $ENV{'ENV_SCRIPT'} . "\n";
     print "cd $module\n";
     print "build\n";
     print "\n";
@@ -2698,7 +2698,7 @@ sub read_ssolar_vars {
 sub get_solar_vars {
     my ($solar_vars, $file) = @_;
     my ($var, $value);
-    open SOLARTABLE, "<$file" or die "can´t open solarfile $file";
+    open SOLARTABLE, "<$file" or die "can't open solarfile $file";
     while(<SOLARTABLE>) {
         s/\r\n//o;
         next if(!/^\w+\s+(\w+)/o);


More information about the Libreoffice-commits mailing list