diff options
author | Hans Insulander <hin@cvs.openbsd.org> | 2002-06-07 19:25:06 +0000 |
---|---|---|
committer | Hans Insulander <hin@cvs.openbsd.org> | 2002-06-07 19:25:06 +0000 |
commit | 6ec4af724ce30b69e7035738217a7ba91aa401f4 (patch) | |
tree | 6b29497b02a47edce2fbf0c407ab80b3db475e70 /usr.sbin/afs | |
parent | 25916290e18514387c0f6c9389fc3c5745f11000 (diff) |
Engage brain before commiting...
- remove false dependency when creating symlinks into source tree
- add -f flag to ln to force recreation of the symlinks if the target would
somehow be triggered
ok maja@
Diffstat (limited to 'usr.sbin/afs')
-rw-r--r-- | usr.sbin/afs/lib/libarla/Makefile.lwp.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/afs/lib/libarla/Makefile.lwp.inc b/usr.sbin/afs/lib/libarla/Makefile.lwp.inc index 0c5e29559b7..ac2d8887986 100644 --- a/usr.sbin/afs/lib/libarla/Makefile.lwp.inc +++ b/usr.sbin/afs/lib/libarla/Makefile.lwp.inc @@ -10,10 +10,10 @@ CFLAGS += -DAFS_BSD_ENV -DFD_SPEED_HACK -I${AFSSRC}/lwp beforedepend: lwp.c lwp.h -lwp.h: ${AFSSRC}/lwp/lwp_asm.h - ln -s ${AFSSRC}/lwp/lwp_asm.h lwp.h -lwp.c: lwp.h ${AFSSRC}/lwp/lwp_asm.c - ln -s ${AFSSRC}/lwp/lwp_asm.c lwp.c +lwp.h: + ln -sf ${AFSSRC}/lwp/lwp_asm.h lwp.h +lwp.c: + ln -sf ${AFSSRC}/lwp/lwp_asm.c lwp.c process.S: HOST_CPU=${MACHINE_ARCH}; \ |