Ticket #3836: 3836-0001-maint-set-default-with-homedir-value.patch

File 3836-0001-maint-set-default-with-homedir-value.patch, 696 bytes (added by zaytsev, 7 years ago)
  • configure.ac

    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], 
    369369    [ 
    370370        if test "x$withval" = "xXDG"; then 
    371371            with_homedir=XDG 
     372        elif test "x$withval" = "xyes"; then 
     373            with_homedir=.mc 
    372374        else 
    373375            with_homedir=$withval 
    374376        fi