summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/tools/llvm-config/Makefile2
-rwxr-xr-xllvm/tools/llvm-config/find-cycles.pl4
2 files changed, 2 insertions, 4 deletions
diff --git a/llvm/tools/llvm-config/Makefile b/llvm/tools/llvm-config/Makefile
index 12cbe0f3acd..f8042333d87 100644
--- a/llvm/tools/llvm-config/Makefile
+++ b/llvm/tools/llvm-config/Makefile
@@ -39,7 +39,7 @@ $(LibDeps): $(GenLibDeps) $(LibDir) $(wildcard $(LibDir)/*.a $(LibDir)/*.o)
# don't have to process them at runtime.
$(FinalLibDeps): find-cycles.pl $(LibDeps)
$(Echo) "Finding cyclic dependencies between LLVM libraries."
- -$(Verb) $(PERL) $< < $(LibDeps) > $@
+ $(Verb) $(PERL) $< < $(LibDeps) > $@
# Rerun our configure substitutions as needed.
ConfigInIn = $(PROJ_SRC_DIR)/llvm-config.in.in
diff --git a/llvm/tools/llvm-config/find-cycles.pl b/llvm/tools/llvm-config/find-cycles.pl
index 812eb96b7d8..5f62034bb2a 100755
--- a/llvm/tools/llvm-config/find-cycles.pl
+++ b/llvm/tools/llvm-config/find-cycles.pl
@@ -71,9 +71,7 @@ foreach my $cycle (@CYCLES) {
}
print sort @output;
-### FIXME: reenable this after 1.8.
-#exit $cycles_found;
-exit 0;
+exit $cycles_found;
#==========================================================================
# Depedency Cycle Support
OpenPOWER on IntegriCloud