Commit 585ec938 by Richard Stallman

(install-headers-cpio): Delete spurious parens from around the whole command.

(install-headers-tar): Delete parens around the "source" tar cmd.

From-SVN: r3409
parent e9d0deec
......@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment