Kaydet (Commit) f9a68771 authored tarafından Peter Foley's avatar Peter Foley

kill oowintool

Change-Id: Ifb0c8a34ecb7b77a92fb67ca947b4ed46f51fd9a
üst 3be45857
...@@ -145,7 +145,7 @@ ifeq ($(BUILD_DMAKE),YES) ...@@ -145,7 +145,7 @@ ifeq ($(BUILD_DMAKE),YES)
endif endif
rm -fr config_host.mk config_build.mk aclocal.m4 autom4te.cache \ rm -fr config_host.mk config_build.mk aclocal.m4 autom4te.cache \
config.log config.status configure \ config.log config.status configure \
config_host.mk.last config_host.mk.stamp src.downloaded warn config_host.mk.last config_host.mk.stamp warn
find $(SOLARENV)/gdb -name "*.pyc" -exec rm {} \; find $(SOLARENV)/gdb -name "*.pyc" -exec rm {} \;
# #
...@@ -165,7 +165,6 @@ ifneq ($(DO_FETCH_TARBALLS),NO) ...@@ -165,7 +165,6 @@ ifneq ($(DO_FETCH_TARBALLS),NO)
include $(SRCDIR)/Makefile.fetch include $(SRCDIR)/Makefile.fetch
fetch: download fetch: download
fetch: get-submodules fetch: get-submodules
fetch: $(SRCDIR)/src.downloaded
ifneq (,$(wildcard .git)) ifneq (,$(wildcard .git))
get-submodules: get-submodules:
...@@ -195,12 +194,6 @@ endif ...@@ -195,12 +194,6 @@ endif
endif endif
# TODO: This should be really in external/ module, I think.
$(SRCDIR)/src.downloaded : $(SRCDIR)/download $(SRCDIR)/config_host.mk | download
ifeq ($(COM),MSC)
$< && touch $@
endif
else else
fetch: fetch:
@echo "Automatic fetching of external tarballs is disabled." @echo "Automatic fetching of external tarballs is disabled."
......
This diff is collapsed.
#!/usr/bin/env bash
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
set -o pipefail
# environment setup yet?
if [ -z "$TARFILE_LOCATION" ]; then
. ./bin/get_config_variables TARFILE_LOCATION COM CPUNAME VCVER DBGHELP_DLL
fi
if [ "$COM" = "MSC" -a "$CPUNAME" = "INTEL" ]; then
# Windows builds need dbghelp.dll in external/dbghelp/
if [ ! -f ./external/dbghelp/dbghelp.dll -a -f $TARFILE_LOCATION/$DBGHELP_DLL ]; then
cp $TARFILE_LOCATION/$DBGHELP_DLL ./external/dbghelp/dbghelp.dll
fi
if [ ! -f ./external/dbghelp/dbghelp.dll ]; then
echo "dbghelp.dll is missing in external/dbghelp/."
echo "Get it from the Microsoft site and put it there."
echo "(Note: Microsoft seems to enjoy changing the exact location of this file."
echo "You may have to search Microsoft's website.) Last time it was seen at:"
echo "<http://www.microsoft.com/downloads/release.asp?releaseid=30682>."
exit 1
fi
fi
if [ "$COM" = "MSC" ]; then
if [ "$CPUNAME" = "INTEL" ]; then
ver=""
else
ver="-64"
fi
# use oowintool to copy CRT dlls and manifest
if ! ./oowintool --msvc-copy-dlls"$ver" ./external/msvcp ; then
echo "oowintool failed to copy CRT"
exit 1
fi
# use oowintool to copy VC redist merge modules
if ! ./oowintool --msvc-copy-msms"$ver" ./external/msm"$VCVER" ; then
echo "oowintool failed to copy merge modules"
exit 1
fi
if [ "$CPUNAME" = "INTEL" ]; then
if ! ./oowintool --msvc-copy-msms-64 ./external/msm"$VCVER" ; then
echo "WARNING: oowintool failed to copy x64 merge modules, installation will lack the 64-bit Explorer extension"
fi
fi
fi
# Local Variables:
# tab-width: 4
# indent-tabs-mode: nil
# End:
# vim:set shiftwidth=4 softtabstop=4 expandtab:
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment