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
160faa07
Commit
160faa07
authored
Jan 07, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't "make LIB absolute" if already absolute,
to avoid problems with the automounter. From-SVN: r3137
parent
b7526ea5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
4 deletions
+18
-4
gcc/fixinc.sco
+9
-2
gcc/fixinc.svr4
+9
-2
No files found.
gcc/fixinc.sco
View file @
160faa07
...
@@ -58,8 +58,15 @@ fi
...
@@ -58,8 +58,15 @@ fi
ORIG_DIR
=
`
pwd
`
ORIG_DIR
=
`
pwd
`
# Make LIB absolute.
# Make LIB absolute if it is relative.
cd
$LIB
;
LIB
=
`
pwd
`
# Don't do this if not necessary, since may screw up automounters.
case
$LIB
in
/
*
)
;;
*
)
cd
$LIB
;
LIB
=
`
${
PWDCMD
}
`
;;
esac
echo
'Building fixincludes in '
${
LIB
}
echo
'Building fixincludes in '
${
LIB
}
...
...
gcc/fixinc.svr4
View file @
160faa07
...
@@ -53,8 +53,15 @@ fi
...
@@ -53,8 +53,15 @@ fi
ORIG_DIR
=
`
pwd
`
ORIG_DIR
=
`
pwd
`
# Make LIB absolute.
# Make LIB absolute if it is relative.
cd
$LIB
;
LIB
=
`
pwd
`
# Don't do this if not necessary, since may screw up automounters.
case
$LIB
in
/
*
)
;;
*
)
cd
$LIB
;
LIB
=
`
${
PWDCMD
}
`
;;
esac
# This prevents /bin/ex from failing if the current terminal type is
# This prevents /bin/ex from failing if the current terminal type is
# unrecognizable.
# unrecognizable.
...
...
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