aboutsummaryrefslogtreecommitdiffstats
path: root/utils/llvm-config
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-03-23 22:42:50 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-03-23 22:42:50 +0000
commit025213e9f2c52e22c8cf5cfcb84ea59fe2cb76fe (patch)
treeec231d9d404dcbee89421423da087378bdbce0db /utils/llvm-config
parent716aefcd910ae849ffb42d4149ac6aecc818c515 (diff)
downloadexternal_llvm-025213e9f2c52e22c8cf5cfcb84ea59fe2cb76fe.zip
external_llvm-025213e9f2c52e22c8cf5cfcb84ea59fe2cb76fe.tar.gz
external_llvm-025213e9f2c52e22c8cf5cfcb84ea59fe2cb76fe.tar.bz2
Don't print out ugly command line when building LibDeps.txt.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27001 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/llvm-config')
-rw-r--r--utils/llvm-config/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/llvm-config/Makefile b/utils/llvm-config/Makefile
index 8a11a27..c4a5407 100644
--- a/utils/llvm-config/Makefile
+++ b/utils/llvm-config/Makefile
@@ -24,7 +24,9 @@ SUB_LDFLAGS =
# should only be re-built manually. No other rule in this file should
# depend on LibDeps.txt.
LibDeps.txt: $(LEVEL)/utils/GenLibDeps.pl $(LibDir)
- $(LEVEL)/utils/GenLibDeps.pl -flat $(LibDir) | sort > LibDeps.txt
+ $(Echo) "Regenerating LibDeps.txt"
+ $(Verb) $(LLVM_SRC_ROOT)/utils/GenLibDeps.pl -flat $(LibDir) | \
+ sort > LibDeps.txt
# Find all the cyclic dependencies between various LLVM libraries, so we
# don't have to process them at runtime.