aboutsummaryrefslogtreecommitdiff
path: root/config-ml.in
diff options
context:
space:
mode:
authorLaurynas Biveinis <lauras@softhome.net>2000-12-09 16:06:19 +0000
committerDJ Delorie <dj@redhat.com>2000-12-09 16:06:19 +0000
commit70a02bd5399e1245f7fe6b33b5a8af640036fdb4 (patch)
tree6aac41a8d1f6462852b297dd8428a08a1ecb1f72 /config-ml.in
parent7df9a35adc80b09c5c855ab2407a20831de3add3 (diff)
* Makefile.in: handle DOS-style absolute paths.
* config-ml.in: likewise. * symlink-tree: likewise. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@38154 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config-ml.in')
-rw-r--r--config-ml.in4
1 files changed, 2 insertions, 2 deletions
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