This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "A pseudo Operating System for the Dreamcast.".
The branch, master has been updated
via 818465f864c98329a7f70dc4b77dcb89c2ae3ec2 (commit)
from e264bad2bc37a3fad990392abdc81b4eb19fdd99 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 818465f864c98329a7f70dc4b77dcb89c2ae3ec2
Author: Lawrence Sebald <ljs...@us...>
Date: Tue Jan 17 15:26:01 2017 -0500
Make dc-chain not fail if patches have already been applied (i.e, you're trying to correct a failed build).
-----------------------------------------------------------------------
Summary of changes:
utils/dc-chain/Makefile | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/utils/dc-chain/Makefile b/utils/dc-chain/Makefile
index f2b4633..39ba7f2 100644
--- a/utils/dc-chain/Makefile
+++ b/utils/dc-chain/Makefile
@@ -99,16 +99,16 @@ patch-newlib: $(newlib_patches)
patch-kos: $(kos_patches)
$(newlib_patches):
- patch -d $(newlib_dir) -p1 < $@
+ patch -N -d $(newlib_dir) -p1 < $@
$(binutils_patches):
- patch -d $(binutils_dir) -p1 < $@
+ patch -N -d $(binutils_dir) -p1 < $@
$(gcc_patches):
- patch -d $(gcc_dir) -p1 < $@
+ patch -N -d $(gcc_dir) -p1 < $@
$(kos_patches):
- patch -d $(kos_root) -p1 < $@
+ patch -N -d $(kos_root) -p1 < $@
# ---- }}}
hooks/post-receive
--
A pseudo Operating System for the Dreamcast.
|