Do not create installation dir if it exists

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@9366 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2001-03-14 12:25:23 +00:00
parent f7e70674de
commit e4141491b4

View file

@ -124,7 +124,11 @@ else
internal-tool-install:: internal-tool-all internal-install-dirs install-tool
endif
internal-install-dirs::
# Depend on having created the installation dir
internal-install-dirs:: $(TOOL_INSTALLATION_DIR)
# This rule runs $(MKDIRS) only if needed
$(TOOL_INSTALLATION_DIR):
$(MKDIRS) $(TOOL_INSTALLATION_DIR)
ifeq ($(GNUSTEP_FLATTENED),)