From f3b0bd1fdc9767de706ef3f3913bff1a89d6f939 Mon Sep 17 00:00:00 2001
From: "Yury V. Zaytsev" <yury@shurup.com>
Date: Sat, 8 Jul 2017 12:54:57 +0200
Subject: [PATCH] Ticket #3836: maint - set default `--with-homedir` value to
`.mc` instead of `yes`
Signed-off-by: Yury V. Zaytsev <yury@shurup.com>
---
configure.ac | 2 ++
1 file changed, 2 insertions(+)
diff --git a/configure.ac b/configure.ac
index 387110d..debccfa 100644
a
|
b
|
AC_ARG_WITH([homedir], |
369 | 369 | [ |
370 | 370 | if test "x$withval" = "xXDG"; then |
371 | 371 | with_homedir=XDG |
| 372 | elif test "x$withval" = "xyes"; then |
| 373 | with_homedir=.mc |
372 | 374 | else |
373 | 375 | with_homedir=$withval |
374 | 376 | fi |