Issue 15618 - Could not install 1.1beta2 Win_tcsh build
Summary: Could not install 1.1beta2 Win_tcsh build
Status: CLOSED DUPLICATE of issue 14518
Alias: None
Product: Build Tools
Classification: Code
Component: code (show other issues)
Version: OOo 1.1 Beta2
Hardware: PC Windows XP
: P3 Trivial (vote)
Target Milestone: ---
Assignee: quetschke
QA Contact: issues@tools
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-06-14 14:47 UTC by curvirgo
Modified: 2003-06-14 16:28 UTC (History)
1 user (show)

See Also:
Issue Type: PATCH
Latest Confirmation in: ---
Developer Difficulty: ---


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description curvirgo 2003-06-14 14:47:46 UTC
Hi,

I built OpenOffice.org 1.1beta2 with tcsh shell on Windows XP, which
created an installation set.
With this installtion set I could not install the 1.1beta2 for the first
time.

I analyzed this problem and found that the Zip.exe with Cygwin, at the
'instsetoo' project, does zip not only files but also structures of
folders containing these files. I did the following and get an
installable installation set:

-------------------------------------------------------------------------------
$ rm -f /bin/zip.exe
$ wget ftp://ftp.info-zip.org/pub/infozip/WIN32/zip23xN.zip
$ unzip -o -d /tmp zip23xN.zip
$ rm zip23xN.zip
$ mv /tmp/zip.exe /bin
$ rm -fr /tmp
$ ln -s /cygdrive/c/tmp /tmp
$ cd instsetoo && build
-------------------------------------------------------------------------------

If you build it from the beginning, you have to edit 'configure' and
'configure.in.'
I made the following changes.

-------------------------------------------------------------------------------
--- OpenOffice.org1.1beta2/config_office/configure.orig	2003-06-06
22:14:36.000000000 +0900
+++ OpenOffice.org1.1beta2/config_office/configure	2003-06-07
20:46:29.000000000 +0900
@@ -6886,9 +6886,9 @@
    { (exit 1); exit 1; }; }
          fi
       else
-         if test -n "`$ZIP_EXE -h | grep -i WinNT`" ; then
-{ { echo "$as_me:$LINENO: error: $ZIP_EXE found in the path is not the
required cygwin version of Info-ZIPs zip.exe." >&5
-echo "$as_me: error: $ZIP_EXE found in the path is not the required
cygwin version of Info-ZIPs zip.exe." >&2;}
+         if test -z "`$ZIP_EXE -h | grep -i WinNT`" ; then
+{ { echo "$as_me:$LINENO: error: $ZIP_EXE found in the path is not the
required native Windows Version 2.3 of Info-ZIPs zip.exe." >&5
+echo "$as_me: error: $ZIP_EXE found in the path is not the required
native Windows Version 2.3 of Info-ZIPs zip.exe." >&2;}
    { (exit 1); exit 1; }; }
          fi
       fi
--- OpenOffice.org1.1beta2/config_office/configure.in.orig	2003-06-06
22:12:32.000000000 +0900
+++ OpenOffice.org1.1beta2/config_office/configure.in	2003-06-07
20:46:54.000000000 +0900
@@ -1151,8 +1151,8 @@
 Probably there is a cygwin version in the path.])
          fi
       else
-         if test -n "`$ZIP_EXE -h | grep -i WinNT`" ; then
-AC_MSG_ERROR([$ZIP_EXE found in the path is not the required cygwin
version of Info-ZIPs zip.exe.])
+         if test -z "`$ZIP_EXE -h | grep -i WinNT`" ; then
+AC_MSG_ERROR([$ZIP_EXE found in the path is the required native Windows
Version 2.3 of Info-ZIPs zip.exe.])
          fi
       fi
       with_unzip_home="UNZIP_IN_PATH"
-------------------------------------------------------------------------------

If you have better ideas to do, please let me know.

Yoshiyuki Masutomi
Comment 1 quetschke 2003-06-14 16:27:00 UTC
Reassigning to myself.
Comment 2 quetschke 2003-06-14 16:27:28 UTC
I'm closing this as duplicate for issue 14518, please
reopen if you think it is another problem.

*** This issue has been marked as a duplicate of 14518 ***
Comment 3 quetschke 2003-06-14 16:28:01 UTC
close