From 3d82406997d02b7ecf5e110e00f6a07c80652295 Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Fri, 13 Feb 2004 00:58:48 +0000 Subject: [PATCH] Style fixes: Use curly braces in Makefiles, use cat (not cp) to copy files. Submitted by: ru --- gnu/usr.bin/tar/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/usr.bin/tar/Makefile b/gnu/usr.bin/tar/Makefile index 172537073a6..af270edddf3 100644 --- a/gnu/usr.bin/tar/Makefile +++ b/gnu/usr.bin/tar/Makefile @@ -26,6 +26,6 @@ CFLAGS+= -DHAVE_CONFIG_H -I${.CURDIR} -I${TARDIR}/lib -I${TARDIR}/src # "Rename" tar.1 to gtar.1 so that we can install gtar.1 with # tar.1 as an optional link (rather than vice versa) gtar.1: tar.1 - cp $(.CURDIR)/tar.1 $(.TARGET) + cat ${.CURDIR}/tar.1 > ${.TARGET} .include