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
8189a222
Commit
8189a222
authored
Jan 19, 1997
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix problems with symlinks to ".".
From-SVN: r13516
parent
af3e86c2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
4 deletions
+18
-4
gcc/fixinc.svr4
+18
-4
No files found.
gcc/fixinc.svr4
View file @
8189a222
#! /bin/sh
# Install modified versions of certain ANSI-incompatible
# native System V Release 4 system include files.
# Copyright (C) 1994, 1996 Free Software Foundation, Inc.
# Copyright (C) 1994, 1996
, 1997
Free Software Foundation, Inc.
# Contributed by Ron Guilmette (rfg@monkeys.com).
#
# This file is part of GNU CC.
...
...
@@ -73,7 +73,7 @@ fi
echo
'Making directories:'
cd
${
INPUT
}
if
$LINKS
;
then
files
=
`
ls
-LR
| sed
-n
s/:
$/
/p
`
files
=
`
find
.
-follow
-type
d
-print
2>/dev/null | sed
'/^.$/d'
`
else
files
=
`
find
.
-type
d
-print
| sed
'/^.$/d'
`
fi
...
...
@@ -98,6 +98,7 @@ if $LINKS; then
# In case $dest is relative, get to $file's dir first.
cd
${
INPUT
}
cd
`
echo
./
$file
| sed
-n
's&[^/]*$&&p'
`
rwd
=
`
pwd
`
# Check that the target directory exists.
# Redirections changed to avoid bug in sh on Ultrix.
(
cd
$dest
)
>
/dev/null 2>&1
...
...
@@ -107,7 +108,11 @@ if $LINKS; then
x
=
`
pwd
`
# If link leads back into ${INPUT},
# make a similar link here.
if
expr
$x
:
"
${
INPUT
}
/.*"
>
/dev/null
;
then
if
expr
"
$dest
"
:
'[^/][^/]*'
>
/dev/null
&&
[
!
-h
$dest
]
;
then
echo
$file
'->'
$dest
': Making link'
rm
-fr
${
LIB
}
/
$file
>
/dev/null 2>&1
ln
-s
$dest
${
LIB
}
/
$file
>
/dev/null 2>&1
elif
expr
$x
:
"
${
INPUT
}
/.*"
>
/dev/null
;
then
# Y gets the actual target dir name, relative to ${INPUT}.
y
=
`
echo
$x
| sed
-n
"s&
${
INPUT
}
/&&p"
`
# DOTS is the relative path from ${LIB}/$file's dir back to ${LIB}.
...
...
@@ -116,6 +121,15 @@ if $LINKS; then
echo
$file
'->'
$dots$y
': Making link'
rm
-fr
${
LIB
}
/
$file
>
/dev/null 2>&1
ln
-s
$dots$y
${
LIB
}
/
$file
>
/dev/null 2>&1
elif
expr
$x
:
"
${
rwd
}
/.*"
>
/dev/null
;
then
# Y gets the actual target dir name, relative to the directory where the link is.
y
=
`
echo
$x
| sed
-n
"s&
${
rwd
}
/&&p"
`
# DOTS is the relative path from ${LIB}/$file's dir back to ${LIB}.
dots
=
`
echo
"
$file
"
|
sed
-e
's@^./@@'
-e
's@/./@/@g'
-e
's@[^/][^/]*@..@g'
-e
's@..$@@'
`
echo
$file
'->'
$dots$y
': Making link'
rm
-fr
${
LIB
}
/
$file
>
/dev/null 2>&1
ln
-s
$dots$y
${
LIB
}
/
$file
>
/dev/null 2>&1
else
# If the link is to outside ${INPUT},
# treat this directory as if it actually contained the files.
...
...
@@ -1526,7 +1540,7 @@ if $LINKS; then
for
file
in
$files
;
do
dest
=
`
ls
-ld
$file
| sed
-n
's/.*-> //p'
`
if
expr
"
$dest
"
:
'[^/].*'
>
/dev/null
;
then
target
=
${
LIB
}
/
`
echo
file | sed
"s|[^/]*
\$
|
$dest
|"
`
target
=
${
LIB
}
/
`
echo
$
file
| sed
"s|[^/]*
\$
|
$dest
|"
`
if
[
-f
$target
]
;
then
ln
-s
$dest
${
LIB
}
/
$file
>
/dev/null 2>&1
fi
...
...
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