diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-03-05 18:55:06 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-03-05 18:55:06 +0000 |
commit | 7cefa640de1d3ab8cdfe6062811190a6fd33e684 (patch) | |
tree | d3a82ef518d9e8b47eb135aa4943f4369c8c595a /Makefile.rules | |
parent | e516379d2a2fd1ad7583b2fa289051da517d8a42 (diff) |
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
Diffstat (limited to 'Makefile.rules')
-rw-r--r-- | Makefile.rules | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Makefile.rules b/Makefile.rules index 01d53f1934..c0a9112c31 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -719,24 +719,6 @@ BaseNameSources := $(sort $(basename $(Sources))) ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o) ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc) -#---------------------------------------------------------- -# For Mingw MSYS bash and Python/w32: -# -# $(ECHOPATH) prints DOSish pathstring. -# ex) $(ECHOPATH) /include/sys/types.h -# --> C:/mingw/include/sys/types.h -# built-in "echo" does not transform path to DOSish path. -# -# FIXME: It would not be needed when MSYS's python -# were provided. -#---------------------------------------------------------- - -ifeq (-mingw32,$(findstring -mingw32,$(BUILD_TRIPLE))) - ECHOPATH := $(Verb)python -c "import sys;print ' '.join(sys.argv[1:])" -else - ECHOPATH := $(Verb)$(ECHO) -endif - ############################################################################### # DIRECTORIES: Handle recursive descent of directory structure ############################################################################### |