You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ms...@apache.org on 2020/12/22 13:09:44 UTC

[openoffice] branch trunk updated: Check that the INPATH variable is set before using it (#113)

This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 3fe3399  Check that the INPATH variable is set before using it (#113)
3fe3399 is described below

commit 3fe339952452e2d3477a993a2809c09f4b560414
Author: Arrigo Marchiori <ar...@yahoo.it>
AuthorDate: Tue Dec 22 14:09:34 2020 +0100

    Check that the INPATH variable is set before using it (#113)
---
 main/makefile.rc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/main/makefile.rc b/main/makefile.rc
index 0688e27..3833128 100644
--- a/main/makefile.rc
+++ b/main/makefile.rc
@@ -59,6 +59,7 @@ distclean .PHONY: clean
 
 
 clean .PHONY:
+	@test -n "$(INPATH)" || (echo Build environment not set; exit 1)
 	-rm -rf */$(INPATH)
 	-rm -rf solver/*/$(INPATH)
 .IF "$(ADDITIONAL_REPOSITORIES)"!=""