From fc26516b4f259936930472b250fa6a2a11b43c56 Mon Sep 17 00:00:00 2001 From: Laurynas Biveinis Date: Sat, 9 Dec 2000 16:06:19 +0000 Subject: Makefile.in: handle DOS-style absolute paths. * Makefile.in: handle DOS-style absolute paths. * config-ml.in: likewise. * symlink-tree: likewise. From-SVN: r38154 --- config-ml.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'config-ml.in') diff --git a/config-ml.in b/config-ml.in index c968bf0d719..42a2dd31c9d 100644 --- a/config-ml.in +++ b/config-ml.in @@ -720,7 +720,7 @@ if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then ;; *) case "${srcdir}" in - /*) # absolute path + /* | [A-Za-z]:[\\/]* ) # absolute path ml_newsrcdir=${srcdir} ;; *) # otherwise relative @@ -733,7 +733,7 @@ if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then esac case "${progname}" in - /*) ml_recprog=${progname} ;; + /* | [A-Za-z]:[\\/]* ) ml_recprog=${progname} ;; *) ml_recprog=${dotdot}${progname} ;; esac -- cgit v1.2.1