From c5bf1a720bbc8d291577646974f29990dfdec0fe Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Tue, 27 Oct 1992 22:30:59 +0000 Subject: [PATCH] (install-cross-tools): When handling $(tooldir)/include, do all cd's starting from build directory. From-SVN: r2624 --- gcc/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/Makefile.in b/gcc/Makefile.in index eb45ff73617..7ac37c6bf86 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; \