aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-02-02 21:39:02 +0000
committerRichard Stallman <rms@gnu.org>1993-02-02 21:39:02 +0000
commit585ec9386cc539f04cf45ffcb6146baa75f4f620 (patch)
tree4e211debb0b8de35fdd4feebd8d738122cda330e /gcc
parente9d0deecabf253607d38084b267be010c76f5400 (diff)
downloadgcc-585ec9386cc539f04cf45ffcb6146baa75f4f620.zip
gcc-585ec9386cc539f04cf45ffcb6146baa75f4f620.tar.gz
gcc-585ec9386cc539f04cf45ffcb6146baa75f4f620.tar.bz2
(install-headers-cpio): Delete spurious parens from around the whole command.
(install-headers-tar): Delete parens around the "source" tar cmd. From-SVN: r3409
Diffstat (limited to 'gcc')
-rw-r--r--gcc/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 415c4b2..1be05d8 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -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.