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/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new b7e08d4fb ltp/makefile: rm the ltp.zip file after unzipped
b7e08d4fb is described below
commit b7e08d4fbaeafc8a1ea61ca07fa0caab406d7330
Author: guoshichao <[email protected]>
AuthorDate: Fri Sep 8 10:41:26 2023 +0800
ltp/makefile: rm the ltp.zip file after unzipped
the ltp.zip file is not tracked in git record, so after download and
unzip finished, we do not need to keep this ltp.zip file.
Signed-off-by: guoshichao <[email protected]>
---
testing/ltp/Makefile | 1 +
1 file changed, 1 insertion(+)
diff --git a/testing/ltp/Makefile b/testing/ltp/Makefile
index 292fed562..49e68c276 100644
--- a/testing/ltp/Makefile
+++ b/testing/ltp/Makefile
@@ -276,6 +276,7 @@ ltp-$(LTPS_VERSION).zip:
$(LTP_UNPACK): ltp-$(LTPS_VERSION).zip
$(Q) echo "dowload $(LTP_DOWNLOAD_URL)$(LTPS_VERSION).zip"
$(Q) unzip -o ltp.zip
+ $(Q) rm -f ltp.zip
$(Q) mv ltp-$(LTPS_VERSION) $(LTP_UNPACK)
$(Q) patch -d $(LTP_UNPACK) -p1 <
0001-pthread_rwlock_unlock-follow-linux.patch
$(Q) patch -d $(LTP_UNPACK) -p1 <
0002-Use-ifdef-instead-of-if-for-__linux__.patch