diff options
author | 2002-06-07 19:25:05 +0000 | |
---|---|---|
committer | 2002-06-07 19:25:05 +0000 | |
commit | a2bf1b62f0c61e13e1e18d68dd7139e5d54173db (patch) | |
tree | 6edf5e5fd06a28d68d7d5096e8163391e3b80d9e | |
parent | - set_progname() no longer used in header-generating program. (diff) | |
download | wireguard-openbsd-a2bf1b62f0c61e13e1e18d68dd7139e5d54173db.tar.xz wireguard-openbsd-a2bf1b62f0c61e13e1e18d68dd7139e5d54173db.zip |
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@
-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}; \ |