mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 21:41:47 +08:00
don't sanitize out empty directories if they're not here (e.g., 'cvs co -P')
This commit is contained in:
@ -15,6 +15,10 @@
|
|||||||
|
|
||||||
Do-first:
|
Do-first:
|
||||||
|
|
||||||
|
if [ -d vms ]; then
|
||||||
|
lose_these_too="vms ${lose_these_too}"
|
||||||
|
fi
|
||||||
|
|
||||||
d30v_files="tc-d30v.c tc-d30v.h"
|
d30v_files="tc-d30v.c tc-d30v.h"
|
||||||
|
|
||||||
if ( echo $* | grep keep\-d30v > /dev/null ) ; then
|
if ( echo $* | grep keep\-d30v > /dev/null ) ; then
|
||||||
@ -166,8 +170,6 @@ vms-a-conf.h
|
|||||||
|
|
||||||
Things-to-lose:
|
Things-to-lose:
|
||||||
|
|
||||||
vms
|
|
||||||
|
|
||||||
Do-last:
|
Do-last:
|
||||||
|
|
||||||
r5900_files="tc-mips.c"
|
r5900_files="tc-mips.c"
|
||||||
|
@ -17,6 +17,12 @@
|
|||||||
|
|
||||||
Do-first:
|
Do-first:
|
||||||
|
|
||||||
|
for d in gasp i386-bsd ieee.fp mn10x00 ; do
|
||||||
|
if [ -d $d ]; then
|
||||||
|
lose_these_too="$d ${lose_these_too}"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
|
if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
|
||||||
keep_these_too="tic80 ${keep_these_too}"
|
keep_these_too="tic80 ${keep_these_too}"
|
||||||
else
|
else
|
||||||
@ -64,11 +70,6 @@ vax
|
|||||||
|
|
||||||
Things-to-lose:
|
Things-to-lose:
|
||||||
|
|
||||||
gasp
|
|
||||||
i386-bsd
|
|
||||||
ieee.fp
|
|
||||||
mn10x00
|
|
||||||
|
|
||||||
Do-last:
|
Do-last:
|
||||||
|
|
||||||
# End of file.
|
# End of file.
|
||||||
|
Reference in New Issue
Block a user