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
e6431ec5
Commit
e6431ec5
authored
Jul 02, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(install-headers-tar): Ignore exit status of the first tar command.
From-SVN: r4831
parent
5175ad37
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
+5
-1
gcc/Makefile.in
+5
-1
No files found.
gcc/Makefile.in
View file @
e6431ec5
...
@@ -1687,7 +1687,11 @@ install-include-dir: install-dir
...
@@ -1687,7 +1687,11 @@ install-include-dir: install-dir
# Install the include directory using tar.
# Install the include directory using tar.
install-headers-tar
:
stmp-headers install-include-dir
install-headers-tar
:
stmp-headers install-include-dir
cd
include
;
tar
cf -
.
|
(
cd
$(libsubdir)
/include
;
tar
$(TAROUTOPTS)
-
)
cd
include
;
\
(
tar
cf - .
;
exit
0
)
|
(
cd
$(libsubdir)
/include
;
tar
$(TAROUTOPTS)
-
)
# /bin/sh on some systems returns the status of the first tar,
# and that can lose with GNU tar which always writes a full block.
# So use `exit 0' to ignore its exit status.
# Install the include directory using cpio.
# Install the include directory using cpio.
install-headers-cpio
:
stmp-headers install-include-dir
install-headers-cpio
:
stmp-headers install-include-dir
...
...
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