From 2adfe2a9e8b9ca6500ca88a3f5cac13f36c739ed Mon Sep 17 00:00:00 2001
From: dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>
Date: Sat, 9 Dec 2000 16:06:19 +0000
Subject: [PATCH] * Makefile.in: handle DOS-style absolute paths. *
 config-ml.in: likewise. * symlink-tree: likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38154 138bc75d-0d04-0410-961f-82ee72b054a4
---
 ChangeLog    | 6 ++++++
 Makefile.in  | 2 +-
 config-ml.in | 4 ++--
 symlink-tree | 4 ++--
 4 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index f215ee43e217..c0b0555b77d3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2000-12-09  Laurynas Biveinis  <lauras@softhome.net>
+
+	* Makefile.in: handle DOS-style absolute paths.
+	* config-ml.in: likewise.
+	* symlink-tree: likewise.
+
 2000-12-08  Alexandre Petit-Bianco  <apbianco@cygnus.com>
 
 	* fastjar: Imported.
diff --git a/Makefile.in b/Makefile.in
index 9456df8f0e79..195a219b135c 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1288,7 +1288,7 @@ $(CONFIGURE_TARGET_MODULES):
 	    echo Configuring in $(TARGET_SUBDIR)/$${dir}; \
 	    cd $(TARGET_SUBDIR)/$${dir}; \
 	    case $(srcdir) in \
-	    /*) \
+	    /* | [A-Za-z]:[\\/]*) \
 	      topdir=$(srcdir) ;; \
 	    *) \
 	      case "$(TARGET_SUBDIR)" in \
diff --git a/config-ml.in b/config-ml.in
index c968bf0d7191..42a2dd31c9d9 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
 
diff --git a/symlink-tree b/symlink-tree
index 8f11c0879325..5b18cab92388 100755
--- a/symlink-tree
+++ b/symlink-tree
@@ -20,13 +20,13 @@ ignore_additional=". .. CVS"
 # If we were invoked with a relative path name, adjust ${prog} to work
 # in subdirs.
 case ${prog} in
-/*) ;;
+/* | [A-Za-z]:[\\/]*) ;;
 *) prog=../${prog} ;;
 esac
 
 # Set newsrcdir to something subdirectories can use.
 case ${srcdir} in
-/*) newsrcdir=${srcdir} ;;
+/* | [A-Za-z]:[\\/]*) newsrcdir=${srcdir} ;;
 *) newsrcdir=../${srcdir} ;;
 esac
 
-- 
GitLab