mirror of https://github.com/rust-lang/rust.git
mk/tests.mk: remove mention of nonexistent files
This commit is contained in:
parent
bd980bcbf5
commit
0e2a086350
|
@ -216,9 +216,7 @@ ALL_CS := $(wildcard $(S)src/rt/*.cpp \
|
|||
$(S)src/rt/*/*.cpp \
|
||||
$(S)src/rt/*/*/*.cpp \
|
||||
$(S)src/rustllvm/*.cpp)
|
||||
ALL_CS := $(filter-out $(S)src/rt/bigint/bigint_ext.cpp \
|
||||
$(S)src/rt/bigint/bigint_int.cpp \
|
||||
$(S)src/rt/miniz.cpp \
|
||||
ALL_CS := $(filter-out $(S)src/rt/miniz.cpp \
|
||||
$(S)src/rt/linenoise/linenoise.c \
|
||||
$(S)src/rt/linenoise/utf8.c \
|
||||
,$(ALL_CS))
|
||||
|
@ -228,12 +226,9 @@ ALL_HS := $(wildcard $(S)src/rt/*.h \
|
|||
$(S)src/rustllvm/*.h)
|
||||
ALL_HS := $(filter-out $(S)src/rt/vg/valgrind.h \
|
||||
$(S)src/rt/vg/memcheck.h \
|
||||
$(S)src/rt/uthash/uthash.h \
|
||||
$(S)src/rt/uthash/utlist.h \
|
||||
$(S)src/rt/msvc/typeof.h \
|
||||
$(S)src/rt/msvc/stdint.h \
|
||||
$(S)src/rt/msvc/inttypes.h \
|
||||
$(S)src/rt/bigint/bigint.h \
|
||||
$(S)src/rt/linenoise/linenoise.h \
|
||||
$(S)src/rt/linenoise/utf8.h \
|
||||
,$(ALL_HS))
|
||||
|
|
Loading…
Reference in New Issue