aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/CoqMakefile.in
diff options
context:
space:
mode:
authorGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2017-08-22 11:16:06 +0200
committerGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2017-08-22 11:29:32 +0200
commit8e0c968d375aa1cd9ed02d474682f90e99df7f7f (patch)
treef0c479de937f1c2e4a20fe02d2de750bd061a552 /tools/CoqMakefile.in
parent325890a83a2b073d9654b5615c585cd65a376fbd (diff)
Prevent warning about DSTROOT being undefined.
Diffstat (limited to 'tools/CoqMakefile.in')
-rw-r--r--tools/CoqMakefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/CoqMakefile.in b/tools/CoqMakefile.in
index 9f891afe5..5c6e2b4cb 100644
--- a/tools/CoqMakefile.in
+++ b/tools/CoqMakefile.in
@@ -199,8 +199,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