diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2016-07-28 21:29:04 +0000 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2016-07-28 21:29:04 +0000 |
commit | 40018b91dde2f73c2973c89898632192b39858ea (patch) | |
tree | 27f8f8d1da069cd528664d6d23fa159d53f8b78d /sys/compat/svr4 | |
parent | e9004cefe91f5c0593eaddac22e4e609a0c49cc9 (diff) |
Don't create pointless backups of generated files in "make sysent".
Any sensible workflow will include a revision control system from which
to restore the old files if required. In normal usage, developers just
have to clean up the mess.
Reviewed by: jhb
Sponsored by: DARPA, AFRL
Differential Revision: https://reviews.freebsd.org/D7353
Notes
Notes:
svn path=/head/; revision=303464
Diffstat (limited to 'sys/compat/svr4')
-rw-r--r-- | sys/compat/svr4/Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/compat/svr4/Makefile b/sys/compat/svr4/Makefile index a90cd555dddb..06cacea1cd5b 100644 --- a/sys/compat/svr4/Makefile +++ b/sys/compat/svr4/Makefile @@ -9,9 +9,5 @@ sysent: svr4_sysent.c svr4_syscall.h svr4_proto.h svr4_syscallnames.c svr4_sysent.c svr4_syscall.h svr4_proto.h: \ ../../kern/makesyscalls.sh syscalls.master syscalls.conf - -mv -f svr4_syscallnames.c svr4_syscallnames.c.bak - -mv -f svr4_sysent.c svr4_sysent.c.bak - -mv -f svr4_syscall.h svr4_syscall.h.bak - -mv -f svr4_proto.h svr4_proto.h.bak sh ../../kern/makesyscalls.sh syscalls.master syscalls.conf |