From a681036c01b4f15192e24bed01d1d2faab151ae1 Mon Sep 17 00:00:00 2001 From: Sungkeun Cho Date: Tue, 9 Jun 2020 04:55:28 -0700 Subject: [PATCH] [infer] Fix a typo in Makefile of build test Reviewed By: jvillard Differential Revision: D21950620 fbshipit-source-id: 0fd569948 --- infer/tests/build_systems/ant/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infer/tests/build_systems/ant/Makefile b/infer/tests/build_systems/ant/Makefile index 3953eac29..175fd1065 100644 --- a/infer/tests/build_systems/ant/Makefile +++ b/infer/tests/build_systems/ant/Makefile @@ -9,7 +9,7 @@ SOURCES = $(wildcard src/*.java) CLASS_FILES = $(notdir $(patsubst %.java,%.class,$(SOURCES))) OBJECTS = $(CLASS_FILES:%=ant_out/%) INFERPRINT_OPTIONS = --issues-tests -CLEAN_EXTRA = ant-out +CLEAN_EXTRA = ant_out include $(TESTS_DIR)/java.make include $(TESTS_DIR)/infer.make