diff options
author | Paul Eggert <eggert@gnu.org> | 1996-06-06 21:31:55 +0000 |
---|---|---|
committer | Paul Eggert <eggert@gnu.org> | 1996-06-06 21:31:55 +0000 |
commit | b9a48d63c5cc9777b28e6bf98dcaa029a00766dd (patch) | |
tree | cdbea5f02fa8615212092c7c2874ac4261c509e8 /gcc/fixproto | |
parent | e6f379d049bbdea64e637b13faef8dc656758631 (diff) | |
download | gcc-b9a48d63c5cc9777b28e6bf98dcaa029a00766dd.zip gcc-b9a48d63c5cc9777b28e6bf98dcaa029a00766dd.tar.gz gcc-b9a48d63c5cc9777b28e6bf98dcaa029a00766dd.tar.bz2 |
(subdirs): Work around Solaris 2.5
/usr/xpgr/bin/sed problem with \+\+.
From-SVN: r12179
Diffstat (limited to 'gcc/fixproto')
-rwxr-xr-x | gcc/fixproto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fixproto b/gcc/fixproto index 79c8dfc..4b6f721 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|^\./||'` |