Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
ce942994
Commit
ce942994
authored
Sep 28, 1994
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Comment out loop which handled symbolic links to files
From-SVN: r8155
parent
c17704b3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
14 deletions
+17
-14
gcc/fixincludes
+17
-14
No files found.
gcc/fixincludes
View file @
ce942994
...
@@ -1763,20 +1763,23 @@ if [ -r ${LIB}/$file ]; then
...
@@ -1763,20 +1763,23 @@ if [ -r ${LIB}/$file ]; then
fi
fi
fi
fi
if
$LINKS
;
then
# This loop does not appear to do anything, because it uses file
echo
'Making internal symbolic non-directory links'
# rather than $file when setting target. It also appears to be
cd
${
INPUT
}
# unnecessary, since the main loop processes symbolic links.
files
=
`
find
.
-type
l
-print
`
#if $LINKS; then
for
file
in
$files
;
do
# echo 'Making internal symbolic non-directory links'
dest
=
`
ls
-ld
$file
| sed
-n
's/.*-> //p'
`
# cd ${INPUT}
if
expr
"
$dest
"
:
'[^/].*'
>
/dev/null
;
then
# files=`find . -type l -print`
target
=
${
LIB
}
/
`
echo
file | sed
"s|[^/]*
\$
|
$dest
|"
`
# for file in $files; do
if
[
-f
$target
]
;
then
# dest=`ls -ld $file | sed -n 's/.*-> //p'`
ln
-s
$dest
${
LIB
}
/
$file
>
/dev/null 2>&1
# if expr "$dest" : '[^/].*' > /dev/null; then
fi
# target=${LIB}/`echo file | sed "s|[^/]*\$|$dest|"`
fi
# if [ -f $target ]; then
done
# ln -s $dest ${LIB}/$file >/dev/null 2>&1
fi
# fi
# fi
# done
#fi
# Make sure that any include files referenced using double quotes
# Make sure that any include files referenced using double quotes
# exist in the fixed directory. This comes last since otherwise
# exist in the fixed directory. This comes last since otherwise
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment