forked from OSchip/llvm-project
revert r1.68. This breaks 'make install' without doing 'make' first, but
fixes PR1208. llvm-svn: 34466
This commit is contained in:
parent
db2abec8ac
commit
31f99b9b45
|
@ -40,6 +40,13 @@ ifeq ($(MAKECMDGOALS),tools-only)
|
|||
OPTIONAL_DIRS :=
|
||||
endif
|
||||
|
||||
# Don't install utils, examples, or projects they are only used to
|
||||
# build LLVM.
|
||||
ifeq ($(MAKECMDGOALS),install)
|
||||
DIRS := $(filter-out utils, $(DIRS))
|
||||
OPTIONAL_DIRS :=
|
||||
endif
|
||||
|
||||
# Include the main makefile machinery.
|
||||
include $(LLVM_SRC_ROOT)/Makefile.rules
|
||||
|
||||
|
|
Loading…
Reference in New Issue