diff options
author | eggert <eggert@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-06-06 21:31:55 +0000 |
---|---|---|
committer | eggert <eggert@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-06-06 21:31:55 +0000 |
commit | 33287fac10fa94fe4f845ff143c28f1bfef6e6e0 (patch) | |
tree | cdbea5f02fa8615212092c7c2874ac4261c509e8 /gcc/fixproto | |
parent | b662d9d4a9aef7a91ff172b5ceef8ddf2416f77d (diff) | |
download | gcc-33287fac10fa94fe4f845ff143c28f1bfef6e6e0.tar.gz |
(subdirs): Work around Solaris 2.5
/usr/xpgr/bin/sed problem with \+\+.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12179 138bc75d-0d04-0410-961f-82ee72b054a4
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 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|^\./||'` |