hackshell.tpl: Skip links to directories, to avoid removing them.

* fixinc/hackshell.tpl: Skip links to directories, to avoid
        removing them.
        * fixinc/inclhack.tpl: Likewise.
        * fixinc/fixinc.sh, fixinc/fixincl.x, fixinc/inclhack.sh: Rebuilt.

From-SVN: r26166
This commit is contained in:
Jeffrey A Law 1999-04-03 23:36:22 +00:00 committed by Jeff Law
parent 677a966854
commit 20cc423f21
6 changed files with 30 additions and 17 deletions

View File

@ -1,3 +1,10 @@
Sun Apr 4 00:14:54 1999 Jeffrey A Law (law@cygnus.com)
* fixinc/hackshell.tpl: Skip links to directories, to avoid
removing them.
* fixinc/inclhack.tpl: Likewise.
* fixinc/fixinc.sh, fixinc/fixincl.x, fixinc/inclhack.sh: Rebuilt.
Sat Apr 3 23:46:13 1999 David Edelsohn <edelsohn@gnu.org>
* rs6000.md (addsi3, iorsi3, xorsi3, adddi3, iordi3, xordi3,

View File

@ -2,9 +2,9 @@
#
# DO NOT EDIT THIS FILE (fixincl.sh)
#
# It has been autogen-ed Saturday April 3, 1999 at 05:12:04 PM EST
# From the definitions inclhack.def
# and the template file inclhack.tpl
# It has been autogen-ed Sunday April 4, 1999 at 12:12:26 AM MST
# From the definitions /puke/law//egcs/egcs/gcc/fixinc/inclhack.def
# and the template file /puke/law//egcs/egcs/gcc/fixinc/inclhack.tpl
#
# Install modified versions of certain ANSI-incompatible system header
# files which are fixed to work correctly with ANSI C and placed in a

View File

@ -1,9 +1,9 @@
/*
* DO NOT EDIT THIS FILE (fixincl.x)
*
* It has been autogen-ed Saturday April 3, 1999 at 05:12:03 PM EST
* From the definitions inclhack.def
* and the template file fixincl.tpl
* It has been autogen-ed Sunday April 4, 1999 at 12:11:03 AM MST
* From the definitions /puke/law//egcs/egcs/gcc/fixinc/inclhack.def
* and the template file /puke/law//egcs/egcs/gcc/fixinc/fixincl.tpl
*
* Install modified versions of certain ANSI-incompatible system header
* files which are fixed to work correctly with ANSI C and placed in a

View File

@ -8,9 +8,12 @@
echo Checking header files
for file in $files; do
if ( test ! -r ${file} -o \
-n "`fgrep 'This file is part of the GNU C Library' ${file}`" )
then continue ; fi
# Skip unreadable files, symlinks to directories and glibc files
if test ! -r "${file}" || test -d "${file}/." \
|| fgrep 'This file is part of the GNU C Library' "${file}" \
> /dev/null 2>&1; then
continue
fi
fixlist=""
DESTFILE=${DESTDIR}/`echo ${file} | sed "s;${FIND_BASE}/;;" `

View File

@ -2,9 +2,9 @@
#
# DO NOT EDIT THIS FILE (inclhack.sh)
#
# It has been autogen-ed Saturday April 3, 1999 at 05:12:01 PM EST
# From the definitions inclhack.def
# and the template file inclhack.tpl
# It has been autogen-ed Sunday April 4, 1999 at 12:12:26 AM MST
# From the definitions /puke/law//egcs/egcs/gcc/fixinc/inclhack.def
# and the template file /puke/law//egcs/egcs/gcc/fixinc/inclhack.tpl
#
# Install modified versions of certain ANSI-incompatible system header
# files which are fixed to work correctly with ANSI C and placed in a
@ -343,7 +343,7 @@ while [ $# != 0 ]; do
#
cd ${INPUT}
files=`if $LINKS; then
find ${FIND_BASE}/. \( -type f -o -type l \) -print
find ${FIND_BASE}/. \( -type f -o \( -type l -exec test ! -d {} \; \) \) -print
else
find ${FIND_BASE}/. -type f -print
fi | \
@ -352,9 +352,12 @@ while [ $# != 0 ]; do
echo Checking header files
for file in $files; do
if ( test ! -r ${file} -o \
-n "`fgrep 'This file is part of the GNU C Library' ${file}`" )
then continue ; fi
# Skip unreadable files, symlinks to directories and glibc files
if test ! -r "${file}" || test -d "${file}/." \
|| fgrep 'This file is part of the GNU C Library' "${file}" \
> /dev/null 2>&1; then
continue
fi
fixlist=""
DESTFILE=${DESTDIR}/`echo ${file} | sed "s;${FIND_BASE}/;;" `

View File

@ -334,7 +334,7 @@ while [ $# != 0 ]; do
cd ${INPUT}[=
_IF PROGRAM _env ! =]
files=`if $LINKS; then
find ${FIND_BASE}/. \( -type f -o -type l \) -print
find ${FIND_BASE}/. \( -type f -o \( -type l -exec test ! -d {} \; \) \) -print
else
find ${FIND_BASE}/. -type f -print
fi | \