diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-08-07 07:39:28 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-08-07 07:39:28 +0000 |
commit | 39fd4ce177b1e2d432defdd750e2c16a267cb63d (patch) | |
tree | 3637d2e25408e5894a2df4428b729ee25c80d0d4 /gcc/Makefile.in | |
parent | 655d0e9131f5370e1bd1815774bfc6bea90df196 (diff) | |
download | gcc-39fd4ce177b1e2d432defdd750e2c16a267cb63d.tar.gz |
* Makefile.in (TAROUTOPTS): Kill.
(install-headers-tar): Use "xpf" for tar headerfile extraction
* i370/x-oe (TAROUTOPTS): Delete.
* m68k/x-apollo68 (TAROUTOPTS): Delete.
* m68k/x-hp320 (TAROUTOPTS): Delete.
* m68k/x-hp320g (TAROUTOPTS): Delete.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28577 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index d7bc64490e5..1a57586d71c 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -416,9 +416,6 @@ LIBCONVERT = # Control whether header files are installed. INSTALL_HEADERS=install-headers -# Options for tar when copying trees. So HPUX can override it. -TAROUTOPTS = xpBf - # Additional directories of header files to run fixincludes on. # These should be directories searched automatically by default # just as /usr/include is. @@ -2648,7 +2645,7 @@ install-headers-tar: stmp-headers $(STMP_FIXPROTO) install-include-dir # found in CDPATH, corrupting the output. We could just redirect the # output of `cd', but some shells lose on redirection within `()'s (cd `pwd`/include ; \ - tar -cf - .; exit 0) | (cd $(libsubdir)/include; tar $(TAROUTOPTS) - ) + tar -cf - .; exit 0) | (cd $(libsubdir)/include; tar xpf - ) # /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. |