From: Taylor R Campbell Date: Sun, 6 Oct 2013 18:10:33 +0000 (+0000) Subject: Make the `save' makefile targets fail noisily. X-Git-Tag: release-9.2.0~100^2 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=4f57ef638b8a51c4f81248356f2889a9ccb8ff11;p=mit-scheme.git Make the `save' makefile targets fail noisily. --- diff --git a/src/Makefile.in b/src/Makefile.in index b33636058..d3b79ca2a 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -167,7 +167,7 @@ save: \) \ -print0 \ | pax -rw -pe -l -v -d -0 obj/. \ - ) || rm -rf obj + ) || { rm -rf obj; exit 1; } .PHONY: restore restore: diff --git a/src/Makefile.tools.in b/src/Makefile.tools.in index 5af13ad7e..c36b30538 100644 --- a/src/Makefile.tools.in +++ b/src/Makefile.tools.in @@ -103,7 +103,7 @@ save: \) \ -print0 \ | pax -rw -pe -l -v -d -0 tools/obj/. \ - ) || rm -rf tools/obj + ) || { rm -rf tools/obj; exit 1; } .PHONY: restore restore: