* config/djgpp/djconfig.sh: Use explicit absolute file name when
invoking `find'.
This commit is contained in:
parent
cd42d3a86d
commit
619cbaf76d
@ -1,5 +1,8 @@
|
||||
2001-02-04 Eli Zaretskii <eliz@is.elta.co.il>
|
||||
|
||||
* config/djgpp/djconfig.sh: Use explicit absolute file name when
|
||||
invoking `find'.
|
||||
|
||||
* ser-go32.c (dos_write) [UART_FIFO_WORKS]: Use outportsb only if
|
||||
UART_FIFO_WORKS is defined. Otherwise use outportb.
|
||||
From Francisco Pastor <fpastor.etra-id@etra.es>
|
||||
|
@ -59,8 +59,11 @@ else
|
||||
SKIPDIR=`pwd | sed -e "s|${srcdir}|.|"`
|
||||
SKIPFILES="${SKIPDIR}/*"
|
||||
fi
|
||||
|
||||
# We use explicit /dev/env/DJDIR/bin/find to avoid catching
|
||||
# an incompatible DOS/Windows version that might be on their PATH.
|
||||
for fix_dir in \
|
||||
`cd $srcdir && find . -type d ! -ipath "${SKIPDIR}" ! -ipath "${SKIPFILES}"`
|
||||
`cd $srcdir && /dev/env/DJDIR/bin/find . -type d ! -ipath "${SKIPDIR}" ! -ipath "${SKIPFILES}"`
|
||||
do
|
||||
if test ! -f ${fix_dir}/configure.orig ; then
|
||||
if test -f ${srcdir}/${fix_dir}/configure ; then
|
||||
|
Loading…
Reference in New Issue
Block a user