From 059e0dab66dffd5871fc5ec5308042cd4cd3d378 Mon Sep 17 00:00:00 2001 From: Jeremie Dimino Date: Wed, 30 Aug 2017 00:45:47 +0100 Subject: [PATCH] Add an 'accept-corrections' target To copy over all the .corrected files --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 7bad65db..85bdcf24 100644 --- a/Makefile +++ b/Makefile @@ -52,4 +52,10 @@ update-jbuilds: $(BIN) rm -f doc/jbuild mv doc/jbuild.tmp doc/jbuild +accept-corrections: + for i in `find . -name \*.corrected`; do \ + cp $$i $${i/.corrected}; \ + done + .PHONY: default install uninstall reinstall clean test doc +.PHONY: accept-corrections