diff options
-rwxr-xr-x | gcc/fixproto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fixproto b/gcc/fixproto index 79c8dfc3aff..4b6f721cbef 100755 --- a/gcc/fixproto +++ b/gcc/fixproto @@ -142,7 +142,7 @@ for code in ALL STD ; do # for C++, so skip those. subdirs="$subdirs "`cd $rel_source_dir/$d; find . -type d -print | \ sed -e '/^\.$/d' -e "s|^\./|${d}/|" -e 's|^\./||' \ - -e '/CC$/d' -e '/\+\+/d'` + -e '/CC$/d' -e '/[+][+]/d'` links= links=`cd $rel_source_dir; find $d/. -type l -print | \ sed -e "s|$d/./|$d/|" -e 's|^\./||'` |