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 /gnu | |
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 'gnu')
-rw-r--r-- | gnu/usr.bin/cc/cpp/Makefile | 2 | ||||
-rw-r--r-- | gnu/usr.bin/cc/f77/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/cc/cpp/Makefile b/gnu/usr.bin/cc/cpp/Makefile index 56fdc06..12be88f 100644 --- a/gnu/usr.bin/cc/cpp/Makefile +++ b/gnu/usr.bin/cc/cpp/Makefile @@ -17,6 +17,6 @@ LDADD+= ${LIBCC_INT} CLEANFILES= cpp.1 cpp.1: cccp.1 - ln -sf ${.ALLSRC} ${.TARGET} + cat ${.ALLSRC} > ${.TARGET} .include <bsd.prog.mk> diff --git a/gnu/usr.bin/cc/f77/Makefile b/gnu/usr.bin/cc/f77/Makefile index 4902ba5..233cae2 100644 --- a/gnu/usr.bin/cc/f77/Makefile +++ b/gnu/usr.bin/cc/f77/Makefile @@ -18,6 +18,6 @@ LDADD= ${LIBCC_INT} CLEANFILES= f77.1 f77.1: g77.1 - ln -sf ${.ALLSRC} ${.TARGET} + cat ${.ALLSRC} > ${.TARGET} .include <bsd.prog.mk> |