mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
Makefile.in: handle DOS-style absolute paths.
* Makefile.in: handle DOS-style absolute paths. * config-ml.in: likewise. * symlink-tree: likewise. From-SVN: r38154
This commit is contained in:
parent
6a52a2ef4b
commit
fc26516b4f
@ -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.
|
||||
|
@ -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 \
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user