(install-headers-cpio): Delete spurious parens from around the whole command.
authorRichard Stallman <rms@gnu.org>
Tue, 2 Feb 1993 21:39:02 +0000 (21:39 +0000)
committerRichard Stallman <rms@gnu.org>
Tue, 2 Feb 1993 21:39:02 +0000 (21:39 +0000)
(install-headers-tar): Delete parens around the "source" tar cmd.

From-SVN: r3409

gcc/Makefile.in

index 415c4b2e63245629099a0f1905e5a3fec66d99e8..1be05d81fd30a825e3da4379d828d2a1d1c4eb5c 100644 (file)
@@ -1596,11 +1596,11 @@ install-include-dir:
 
 # Install the include directory using tar.
 install-headers-tar: stmp-headers install-include-dir
-       ( cd include; tar cf - . ) | (cd $(libsubdir)/include; tar xpBf - )
+       cd include; tar cf - . | (cd $(libsubdir)/include; tar xpBf - )
 
 # Install the include directory using cpio.
 install-headers-cpio: stmp-headers install-include-dir
-       ( cd include; find . -print | cpio -pdum $(libsubdir)/include )
+       cd include; find . -print | cpio -pdum $(libsubdir)/include
 
 # Put assert.h in /usr/local/include, so it won't override GNU libc's assert.h.
 # Don't replace the assert.h already there if it is not from GCC.