diff options
| author | Jun Kuriyama <kuriyama@FreeBSD.org> | 2003-06-06 13:46:55 +0000 |
|---|---|---|
| committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 2003-06-06 13:46:55 +0000 |
| commit | 3a624f5e231be635938172fee38b15046d4ef3dd (patch) | |
| tree | 105031d796a987b6ae19ac2274544ddf8fed1447 /usr.bin | |
| parent | c2762004a6c6fcf1ff51715e529d47a3755a2695 (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/awk/Makefile | 2 | ||||
| -rw-r--r-- | usr.bin/less/Makefile.common | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/awk/Makefile b/usr.bin/awk/Makefile index ffc5e68504fa9..1d3642b6a8323 100644 --- a/usr.bin/awk/Makefile +++ b/usr.bin/awk/Makefile @@ -27,6 +27,6 @@ maketab: ytab.h ${AWKSRC}/maketab.c CLEANFILES+= nawk.1 nawk.1: awk.1 - ln -sf ${.ALLSRC} ${.TARGET} + cat ${.ALLSRC} > ${.TARGET} .include <bsd.prog.mk> diff --git a/usr.bin/less/Makefile.common b/usr.bin/less/Makefile.common index 6b3b62b97dab8..fcc6ccfa1ce3c 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} |
