diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2005-05-06 03:13:54 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2005-05-06 03:13:54 +0000 |
commit | 760293682efa608146e37130ecfa85f7ed60dcad (patch) | |
tree | cb358f9b5e3d47ebe98be3635d5c6ae3a6b04e01 /sys/arch | |
parent | 27f6dc2f4ab7cb86e96c3ba691f205d615524c54 (diff) |
Fix links target.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hp300/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hp300/Makefile b/sys/arch/hp300/Makefile index e329cc0d36c..aa80f8528e6 100644 --- a/sys/arch/hp300/Makefile +++ b/sys/arch/hp300/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 2002/07/15 21:29:16 mickey Exp $ +# $OpenBSD: Makefile,v 1.7 2005/05/06 03:13:53 marco Exp $ # $NetBSD: Makefile,v 1.5 1995/08/04 07:40:31 thorpej Exp $ # @(#)Makefile 7.3 (Berkeley) 6/9/91 @@ -20,7 +20,7 @@ AHP300= $S/arch/m68k/m68k/*.[Ss] $S/arch/hp300/hp300/*.[Ss] \ $S/lib/libkern/arch/m68k/*.[sS] # Directories in which to place hp300 tags links -DHP300= dev hp300 include +DHP300= conf dev hp300 include tags: -ctags -wdtf ${THP300} ${COMM} ${SHP300} @@ -31,7 +31,7 @@ tags: links: -for i in ${DHP300}; do \ - cd $$i && rm -f tags; ln -s ${THP300} tags; done + (cd $$i && rm -f tags; ln -s ${THP300} tags); done obj: _SUBDIRUSE |