mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-02 21:31:41 +00:00
Don't check variables before they are set.
Be careful about blanks when checking LLVMGCC variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31455 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5cd496e727
commit
12565159bf
@ -7,9 +7,10 @@
|
||||
LEVEL = ..
|
||||
DIRS = compiler runtime
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
||||
# Don't generate the runtime if we don't have LLVMGCC
|
||||
ifeq ($(LLVMGCC),)
|
||||
ifeq ($(strip $(LLVMGCC)),)
|
||||
DIRS := $(filter-out runtime, $(DIRS))
|
||||
endif
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
Loading…
x
Reference in New Issue
Block a user