aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorGaëtan Gilbert2019-04-04 14:34:53 +0200
committerGaëtan Gilbert2019-04-08 13:15:47 +0200
commitf8690d31f74f18ac1dd03d0b0922d2908b9c6807 (patch)
tree5714c5eccb0362c437212cddec36fd2716392a54 /tools
parent81df7850d40273814fcf78cf6df9057f19fa9a8e (diff)
coq_makefile install target: error if any file is missing
Diffstat (limited to 'tools')
-rw-r--r--tools/CoqMakefile.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/CoqMakefile.in b/tools/CoqMakefile.in
index bd9d8c9221..0236c549d5 100644
--- a/tools/CoqMakefile.in
+++ b/tools/CoqMakefile.in
@@ -468,6 +468,9 @@ beautify: $(BEAUTYFILES)
# Extensions can't assume when they run.
install:
+ $(HIDE)code=0; for f in $(FILESTOINSTALL); do\
+ if ! [ -f "$$f" ]; then >&2 echo $$f does not exist; code=1; fi \
+ done; exit $$code
$(HIDE)for f in $(FILESTOINSTALL); do\
df="`$(COQMKFILE) -destination-of "$$f" $(COQLIBS)`";\
if [ "$$?" != "0" -o -z "$$df" ]; then\