aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMaxime Dénès2017-09-15 09:57:40 +0200
committerMaxime Dénès2017-09-15 09:57:40 +0200
commiteb439843c5fd3841aa22b36453c49d9dd07bd770 (patch)
tree3b323f1441d48087865ff2e5a4304cd8245c9d93 /tools
parente559709f7ac6e997d50d7af2f9e2a230ce2f7daa (diff)
parent8e0c968d375aa1cd9ed02d474682f90e99df7f7f (diff)
Merge PR #990: Prevent warning about DSTROOT being undefined.
Diffstat (limited to 'tools')
-rw-r--r--tools/CoqMakefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/CoqMakefile.in b/tools/CoqMakefile.in
index f4d1118d0f..56e12a1e06 100644
--- a/tools/CoqMakefile.in
+++ b/tools/CoqMakefile.in
@@ -207,8 +207,8 @@ else
TIMING_ARG=
endif
-# Retro compatibility (DESTDIR is standard on Unix, DESTROOT is not)
-ifneq "$(DSTROOT)" ""
+# Retro compatibility (DESTDIR is standard on Unix, DSTROOT is not)
+ifdef DSTROOT
DESTDIR := $(DSTROOT)
endif