diff options
author | Richard Stallman <rms@gnu.org> | 1992-10-27 22:30:59 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-10-27 22:30:59 +0000 |
commit | c5bf1a720bbc8d291577646974f29990dfdec0fe (patch) | |
tree | 1be8678eaa07cec5e200edda007f091870c83e45 /gcc/Makefile.in | |
parent | fa37b3fc164e85adf0add6b3bc274ec5b9fd20aa (diff) | |
download | gcc-c5bf1a720bbc8d291577646974f29990dfdec0fe.zip gcc-c5bf1a720bbc8d291577646974f29990dfdec0fe.tar.gz gcc-c5bf1a720bbc8d291577646974f29990dfdec0fe.tar.bz2 |
(install-cross-tools): When handling $(tooldir)/include,
do all cd's starting from build directory.
From-SVN: r2624
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index eb45ff7..7ac37c6 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1397,7 +1397,7 @@ install-cross-tools: install-dir if [ -d $(tooldir)/include/. ] ; then \ $(SYMLINK) $(tooldir)/include $(libsubdir)/sys-include \ || (if [ -d $(libsubdir)/sys-include ] ; then true ; else mkdir $(libsubdir)/sys-include ; fi; \ - cd $(tooldir)/include; tar cf - . | (cd $(libsubdir)/sys-include; tar xpf -)); \ + (cd $(tooldir)/include; tar cf - .) | (cd $(libsubdir)/sys-include; tar xpf -); \ else true; fi; \ else true; \ fi; \ |