From f0a040c72b8815658ec48ee53b31b22a37ad5087 Mon Sep 17 00:00:00 2001 From: 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 --- lib/libmenu/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libmenu') diff --git a/lib/libmenu/Makefile b/lib/libmenu/Makefile index 0c3088b..fd3ddfe 100644 --- a/lib/libmenu/Makefile +++ b/lib/libmenu/Makefile @@ -42,7 +42,7 @@ MANx= menu.3x menu_attributes.3x menu_cursor.3x \ CLEANFILES+=${page:T:S/x$//g} MAN+=${page:T:S/x$//g} ${page:T:S/x$//g}: ${page} - ln -s ${.ALLSRC} ${.TARGET} + cat ${.ALLSRC} > ${.TARGET} .endfor MLINKS+=menu_attributes.3 menu_back.3 menu_attributes.3 menu_fore.3 \ -- cgit v1.1