From 3a624f5e231be635938172fee38b15046d4ef3dd Mon Sep 17 00:00:00 2001 From: Jun Kuriyama Date: Fri, 6 Jun 2003 13:46:55 +0000 Subject: Use cat ${.ALLSRC} > ${.TARGET} rather than ln -sf ${.ALLSRC} ${.TARGET} not to depends on absolute-path of symbolic links. Commented by: marcel, obrien, bde --- usr.bin/less/Makefile.common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.bin/less') diff --git a/usr.bin/less/Makefile.common b/usr.bin/less/Makefile.common index 6b3b62b97dab..fcc6ccfa1ce3 100644 --- a/usr.bin/less/Makefile.common +++ b/usr.bin/less/Makefile.common @@ -8,4 +8,4 @@ CFLAGS+=-I${.CURDIR}/../less -I${LSDIR} .SUFFIXES: .nro .1 .nro.1: - ln -s ${.IMPSRC} ${.TARGET} + cat ${.IMPSRC} > ${.TARGET} -- cgit v1.2.3