Revert r127073: "Introduce $(ECHOPATH) to print DOSish path string on MSYS bash for alternative of $(ECHO)."

It broke the llvm-gcc-native-mingw32 buildbot, and we need all of them to be green for the 2.9 branch.

Takumi, please reapply after we branch, preferably with a fix ;-)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127107 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jakob Stoklund Olesen
2011-03-05 18:55:06 +00:00
parent e516379d2a
commit 7cefa640de
3 changed files with 20 additions and 41 deletions

View File

@@ -13,10 +13,9 @@ include $(LEVEL)/Makefile.common
all:: $(ToolDir)/llvm-lit
$(ToolDir)/llvm-lit: llvm-lit.in Makefile $(ToolDir)/.dir
$(ToolDir)/llvm-lit: llvm-lit.in $(ToolDir)/.dir
$(Echo) "Creating 'llvm-lit' script..."
$(Verb)$(ECHOPATH) s=@LLVM_SOURCE_DIR@=$(LLVM_SRC_ROOT)=g > lit.tmp
$(Verb)$(ECHOPATH) s=@LLVM_BINARY_DIR@=$(LLVM_OBJ_ROOT)=g >> lit.tmp
$(Verb)sed -f lit.tmp $< > $@
$(Verb)sed -e "s#@LLVM_SOURCE_DIR@#$(LLVM_SRC_ROOT)#g" \
-e "s#@LLVM_BINARY_DIR@#$(LLVM_OBJ_ROOT)#g" \
$< > $@
$(Verb)chmod +x $@
$(Verb)rm -f lit.tmp