diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2003-06-06 13:46:55 +0000 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2003-06-06 13:46:55 +0000 |
commit | f0a040c72b8815658ec48ee53b31b22a37ad5087 (patch) | |
tree | 105031d796a987b6ae19ac2274544ddf8fed1447 /bin | |
parent | 5277e2870bb549d615e847a5b5efaac1dfed4223 (diff) | |
download | FreeBSD-src-f0a040c72b8815658ec48ee53b31b22a37ad5087.zip FreeBSD-src-f0a040c72b8815658ec48ee53b31b22a37ad5087.tar.gz |
Use
cat ${.ALLSRC} > ${.TARGET}
rather than
ln -sf ${.ALLSRC} ${.TARGET}
not to depends on absolute-path of symbolic links.
Commented by: marcel, obrien, bde
Diffstat (limited to 'bin')
-rw-r--r-- | bin/csh/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/csh/Makefile b/bin/csh/Makefile index e5d4ec1..ffd511d 100644 --- a/bin/csh/Makefile +++ b/bin/csh/Makefile @@ -73,7 +73,7 @@ NLSSRCFILES_${catalog:C/.*://}!= cd ${NLSSRCDIR_${catalog:C/.*://}}; echo set[0- .endfor csh.1: tcsh.man - ln -sf ${.ALLSRC} ${.TARGET} + cat ${.ALLSRC} > ${.TARGET} build-tools: gethost |