This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push: new 384d423 ltp: fix build fail issue 384d423 is described below commit 384d423415a93c1e3bf70554e43154c98fdb7a2d Author: nietingting <nietingt...@xiaomi.com> AuthorDate: Fri Dec 18 15:26:01 2020 +0800 ltp: fix build fail issue Signed-off-by: nietingting <nietingt...@xiaomi.com> --- testing/ltp/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testing/ltp/Makefile b/testing/ltp/Makefile index b1fd321..f88658a 100644 --- a/testing/ltp/Makefile +++ b/testing/ltp/Makefile @@ -20,6 +20,7 @@ LTP_URL = https://github.com/linux-test-project/ltp.git TESTDIR = $(LTP_UNPACK)/testcases/open_posix_testsuite +ifneq ($(wildcard $(TESTDIR)),) ifeq ($(CONFIG_FS_AIO),) BLACKWORDS += "aio.h" BLACKWORDS += "SIGPOLL" @@ -102,6 +103,7 @@ MODULE = $(CONFIG_TESTING_LTP) CSRCS := $(LTP_CSRCS) CFLAGS += -I$(LTP_UNPACK) CFLAGS += -I$(TESTDIR)/include +endif $(LTP_UNPACK): $(Q) echo "git clone $(LTP_URL)"