[ooo-build-commit] .: bin/build-ooo

Tor Lillqvist tml at kemper.freedesktop.org
Thu Jul 1 22:00:14 PDT 2010


 bin/build-ooo |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit 2c346decf2759f667c8b54f6020f4f98f48fe9f2
Author: Tor Lillqvist <tlillqvist at novell.com>
Date:   Fri Jul 2 07:57:40 2010 +0300

    Use Win32 format of TARFILE_LOCATION on Windows
    
    Pass it through cygpath -m, as we want slashes, not backslashes in
    it. Seems to work and makes the build of dev300-m83 succeed without
    manual intervention. (Well, except in instsetoo_native, because of
    another problem.)

diff --git a/bin/build-ooo b/bin/build-ooo
index 4553a94..716718a 100755
--- a/bin/build-ooo
+++ b/bin/build-ooo
@@ -5,6 +5,10 @@
 #
 . ./setup
 
+if test "z$BUILD_WIN32" = "zyes"; then
+    TARFILE_LOCATION=`cygpath -m $TARFILE_LOCATION`
+fi
+
 export TARFILE_LOCATION
 
 if test "z$BUILD_WIN32" = "z" -a "z`uname -s`" != "zSunOS" -a "z`uname -s`" != "zDarwin"; then


More information about the ooo-build-commit mailing list