summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-11-21 11:45:16 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-11-21 11:45:16 +0100
commitb02fe06a51b798fdf2c5eeb8f421a93f1860b2a8 (patch)
tree6c698c67f5697e08ca47ebd392dc461d62006b5e /Makefile.in
parent226e0abd2c5ebd9fd591966b584d04e4ab5cd171 (diff)
Call all executables in solenv/bin/ with full path
Change-Id: Ib8db64b9d8ff131b5b7cadea434681a825c967e7
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile.in b/Makefile.in
index 22d8a0193c07..2f8de5d44e1f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -257,7 +257,7 @@ cross-toolset: bootstrap fetch
define gb_Top_DoInstall
echo "$(1) in $(INSTALLDIR) ..." && \
-ooinstall $(2) "$(INSTALLDIR)"
+$(SRCDIR)/solenv/bin/ooinstall $(2) "$(INSTALLDIR)"
endef
@@ -295,9 +295,9 @@ test-install: build
ifeq ($(OS_FOR_BUILD),WNT)
cd $(SRCDIR)/instsetoo_native && $(MAKE) LIBO_TEST_INSTALL=TRUE $(GMAKE_OPTIONS)
else
- @ooinstall $(TESTINSTALLDIR)
+ @$(SRCDIR)/solenv/bin/ooinstall $(TESTINSTALLDIR)
ifneq ($(MACOSX_CODESIGNING_IDENTITY),)
- @macosx-codesign-app-bundle $(TESTINSTALLDIR)/LibreOffice$(if $(ENABLE_RELEASE_BUILD),,Dev).app
+ @$(SRCDIR)/solenv/bin/macosx-codesign-app-bundle $(TESTINSTALLDIR)/LibreOffice$(if $(ENABLE_RELEASE_BUILD),,Dev).app
endif
endif
@$(call gb_Top_InstallFinished,Test Installation,$(TESTINSTALLDIR))
@@ -321,16 +321,16 @@ install-package-%:
$(MAKE) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@
id:
- @create-ids
+ @$(SRCDIR)/solenv/bin/create-ids
tags:
- @create-tags
+ @$(SRCDIR)/solenv/bin/create-tags
etags:
- @create-tags -e
+ @$(SRCDIR)/solenv/bin/create-tags -e
docs:
- @mkdocs.sh $(SRCDIR)/docs $(SRCDIR)/solenv/inc/doxygen.cfg
+ @$(SRCDIR)/solenv/bin/mkdocs.sh $(SRCDIR)/docs $(SRCDIR)/solenv/inc/doxygen.cfg
findunusedcode:
@$(SRCDIR)/bin/findunusedcode $(SRCDIR) $(MAKE)