From 05e90a0f64672284deb2d2b3c4546595a41fb73d Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 20 Aug 2004 09:32:32 +0000 Subject: [PATCH] Remove even the slightest chance of a race condition occurring :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15951 91177308-0d34-0410-b5e6-96231b3b80d8 --- Makefile.rules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.rules b/Makefile.rules index a4bdb1c93a0..835773bfa74 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -459,12 +459,12 @@ endif # Handle the CONFIG_FILES options #--------------------------------------------------------- ifdef CONFIG_FILES -install:: $(sysconfdir) install-config-files +install:: install-config-files $(sysconfdir): $(MKDIR) $(sysconfdir) -install-config-files: $(CONFIG_FILES) +install-config-files: $(sysconfdir) $(CONFIG_FILES) $(VERB) echo Installing Configuration Files To $(sysconfdir) $(VERB) for file in $(CONFIG_FILES); do \ $(INSTALL) $(SourceDir)/$${file} $(sysconfdir) ; \ -- 2.11.0