Commit 2adfe2a9 authored by dj's avatar dj
Browse files

* 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
parent 79f218a9
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> 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
* fastjar: Imported. * fastjar: Imported.
......
...@@ -1288,7 +1288,7 @@ $(CONFIGURE_TARGET_MODULES): ...@@ -1288,7 +1288,7 @@ $(CONFIGURE_TARGET_MODULES):
echo Configuring in $(TARGET_SUBDIR)/$${dir}; \ echo Configuring in $(TARGET_SUBDIR)/$${dir}; \
cd $(TARGET_SUBDIR)/$${dir}; \ cd $(TARGET_SUBDIR)/$${dir}; \
case $(srcdir) in \ case $(srcdir) in \
/*) \ /* | [A-Za-z]:[\\/]*) \
topdir=$(srcdir) ;; \ topdir=$(srcdir) ;; \
*) \ *) \
case "$(TARGET_SUBDIR)" in \ case "$(TARGET_SUBDIR)" in \
......
...@@ -720,7 +720,7 @@ if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then ...@@ -720,7 +720,7 @@ if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then
;; ;;
*) *)
case "${srcdir}" in case "${srcdir}" in
/*) # absolute path /* | [A-Za-z]:[\\/]* ) # absolute path
ml_newsrcdir=${srcdir} ml_newsrcdir=${srcdir}
;; ;;
*) # otherwise relative *) # otherwise relative
...@@ -733,7 +733,7 @@ if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then ...@@ -733,7 +733,7 @@ if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then
esac esac
case "${progname}" in case "${progname}" in
/*) ml_recprog=${progname} ;; /* | [A-Za-z]:[\\/]* ) ml_recprog=${progname} ;;
*) ml_recprog=${dotdot}${progname} ;; *) ml_recprog=${dotdot}${progname} ;;
esac esac
......
...@@ -20,13 +20,13 @@ ignore_additional=". .. CVS" ...@@ -20,13 +20,13 @@ ignore_additional=". .. CVS"
# If we were invoked with a relative path name, adjust ${prog} to work # If we were invoked with a relative path name, adjust ${prog} to work
# in subdirs. # in subdirs.
case ${prog} in case ${prog} in
/*) ;; /* | [A-Za-z]:[\\/]*) ;;
*) prog=../${prog} ;; *) prog=../${prog} ;;
esac esac
# Set newsrcdir to something subdirectories can use. # Set newsrcdir to something subdirectories can use.
case ${srcdir} in case ${srcdir} in
/*) newsrcdir=${srcdir} ;; /* | [A-Za-z]:[\\/]*) newsrcdir=${srcdir} ;;
*) newsrcdir=../${srcdir} ;; *) newsrcdir=../${srcdir} ;;
esac esac
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment