summaryrefslogtreecommitdiff
path: root/usr.bin/less
diff options
context:
space:
mode:
authorJun Kuriyama <kuriyama@FreeBSD.org>2003-06-06 13:46:55 +0000
committerJun Kuriyama <kuriyama@FreeBSD.org>2003-06-06 13:46:55 +0000
commit3a624f5e231be635938172fee38b15046d4ef3dd (patch)
tree105031d796a987b6ae19ac2274544ddf8fed1447 /usr.bin/less
parentc2762004a6c6fcf1ff51715e529d47a3755a2695 (diff)
downloadsrc-test2-3a624f5e231be635938172fee38b15046d4ef3dd.tar.gz
src-test2-3a624f5e231be635938172fee38b15046d4ef3dd.zip
Use
cat ${.ALLSRC} > ${.TARGET} rather than ln -sf ${.ALLSRC} ${.TARGET} not to depends on absolute-path of symbolic links. Commented by: marcel, obrien, bde
Notes
Notes: svn path=/head/; revision=115898
Diffstat (limited to 'usr.bin/less')
-rw-r--r--usr.bin/less/Makefile.common2
1 files changed, 1 insertions, 1 deletions
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}