From 7a8151b406aea61f184f36e54f5dfcd6d2a5f1eb Mon Sep 17 00:00:00 2001 From: dbs Date: Sun, 17 Aug 2008 13:33:39 +0000 Subject: [PATCH] Avoid 'directory exists' errors git-svn-id: svn://svn.open-ils.org/ILS/trunk@10371 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- build/i18n/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/i18n/Makefile b/build/i18n/Makefile index 5a502a19f6..30e176e78e 100644 --- a/build/i18n/Makefile +++ b/build/i18n/Makefile @@ -113,17 +113,17 @@ fmidlpo2entity: # Install updated project files to their corresponding location in the source tree install: updatepo project - mkdir $(CHROME_PROPSDIR)/$(LOCALE) + mkdir -p $(CHROME_PROPSDIR)/$(LOCALE) cp $(PROJECT)/$(LOCALE)/auth.properties $(CHROME_PROPSDIR)/$(LOCALE)/. cp $(PROJECT)/$(LOCALE)/offline.properties $(CHROME_PROPSDIR)/$(LOCALE)/. - mkdir $(SERVER_PROPSDIR)/$(LOCALE) + mkdir -p $(SERVER_PROPSDIR)/$(LOCALE) cp $(PROJECT)/$(LOCALE)/admin.properties $(SERVER_PROPSDIR)/$(LOCALE)/. cp $(PROJECT)/$(LOCALE)/cat.properties $(SERVER_PROPSDIR)/$(LOCALE)/. cp $(PROJECT)/$(LOCALE)/circ.properties $(SERVER_PROPSDIR)/$(LOCALE)/. cp $(PROJECT)/$(LOCALE)/common.properties $(SERVER_PROPSDIR)/$(LOCALE)/. cp $(PROJECT)/$(LOCALE)/multiclass_search_help.html $(SERVER_PROPSDIR)/$(LOCALE)/. cp $(PROJECT)/$(LOCALE)/patron.properties $(SERVER_PROPSDIR)/$(LOCALE)/. - mkdir $(DTDDIR)/$(LOCALE) + mkdir -p $(DTDDIR)/$(LOCALE) cp $(PROJECT)/$(LOCALE)/lang.dtd $(DTDDIR)/$(LOCALE)/ cp $(PROJECT)/$(LOCALE)/opac.dtd $(DTDDIR)/$(LOCALE)/ -- 2.43.2