summaryrefslogtreecommitdiff
path: root/tools/llvm-config/Makefile
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2006-08-04 21:52:23 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2006-08-04 21:52:23 +0000
commitde9c02b171760b9514392c9965541bdc81e3c898 (patch)
tree3ef0b09847ae88171f2089ffee4ea9d3a3f11a47 /tools/llvm-config/Makefile
parentcf65fb6503ff124874b738030c8559a5d9538993 (diff)
downloadllvm-de9c02b171760b9514392c9965541bdc81e3c898.tar.gz
llvm-de9c02b171760b9514392c9965541bdc81e3c898.tar.bz2
llvm-de9c02b171760b9514392c9965541bdc81e3c898.tar.xz
Removed usage of "sort", which can lead to undeterministic behavior on mingw & cygwin platforms.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29532 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-config/Makefile')
-rw-r--r--tools/llvm-config/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-config/Makefile b/tools/llvm-config/Makefile
index f8042333d8..64abfa186c 100644
--- a/tools/llvm-config/Makefile
+++ b/tools/llvm-config/Makefile
@@ -33,7 +33,7 @@ GenLibDeps = $(PROJ_SRC_ROOT)/utils/GenLibDeps.pl
$(LibDeps): $(GenLibDeps) $(LibDir) $(wildcard $(LibDir)/*.a $(LibDir)/*.o)
$(Echo) "Regenerating LibDeps.txt"
- $(Verb) $(GenLibDeps) -flat $(LibDir) $(NM_PATH) | sort > $(LibDeps)
+ $(Verb) $(GenLibDeps) -flat $(LibDir) $(NM_PATH)
# Find all the cyclic dependencies between various LLVM libraries, so we
# don't have to process them at runtime.