Andrew Geissler | 5f35090 | 2021-07-23 13:09:54 -0400 | [diff] [blame] | 1 | From 24a3e0c48f9ebe473b5f1078663e275c27d0537f Mon Sep 17 00:00:00 2001 |
| 2 | From: Mingli Yu <mingli.yu@windriver.com> |
| 3 | Date: Fri, 2 Jul 2021 09:08:21 +0000 |
| 4 | Subject: [PATCH] Makefile: check the file if patched or not |
| 5 | |
| 6 | Check the file if patched or not to avoid patched more than |
| 7 | one time. |
| 8 | |
| 9 | Upstream-Status: Inappropriate (OE-specific) |
| 10 | |
| 11 | Signed-off-by: Mingli Yu <mingli.yu@windriver.com> |
| 12 | --- |
| 13 | Makefile | 2 +- |
| 14 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 15 | |
| 16 | diff --git a/Makefile b/Makefile |
| 17 | index f4a26f5..7bc748e 100644 |
| 18 | --- a/Makefile |
| 19 | +++ b/Makefile |
| 20 | @@ -61,7 +61,7 @@ miniperlmain$O: $(CROSSPATCHED) |
| 21 | # Original versions are not saved anymore; patch generally takes care of this, |
| 22 | # and if that fails, reaching for the source tarball is the safest option. |
| 23 | $(CROSSPATCHED): %.applied: %.patch |
| 24 | - patch -p1 -i $< && touch $@ |
Mingli Yu | 66d661a | 2021-07-28 13:39:59 +0800 | [diff] [blame] | 25 | + test ! -f $@ && (patch -p1 -i $< && touch $@) || echo "$@ exist" |
Andrew Geissler | 5f35090 | 2021-07-23 13:09:54 -0400 | [diff] [blame] | 26 | |
| 27 | # ---[ common ]----------------------------------------------------------------- |
| 28 | |
| 29 | -- |
| 30 | 2.29.2 |
| 31 | |