diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2003-06-24 22:45:34 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2003-06-24 22:45:34 +0000 |
commit | dd8eccf37911c51bb235e0ad7d25c02751b60d48 (patch) | |
tree | 7590edabc47b149518074fee40008c1d79f953fe /sys/compat/common/Makefile | |
parent | 817ecac2e2ca954de96eab1d2a48544a1d6f8524 (diff) |
a.out emulation for dynamic binaries: intercept the right system calls
so that they look in /emul/a.out first. This allows a.out's ld.so to
find its own libraries without interfering with ELF at all.
Many comments from various people. okay deraadt@
Diffstat (limited to 'sys/compat/common/Makefile')
-rw-r--r-- | sys/compat/common/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/common/Makefile b/sys/compat/common/Makefile index 558d5d3898c..49e3098dc34 100644 --- a/sys/compat/common/Makefile +++ b/sys/compat/common/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.13 2003/01/30 03:29:49 millert Exp $ +# $OpenBSD: Makefile,v 1.14 2003/06/24 22:45:33 espie Exp $ # $NetBSD: Makefile,v 1.8 1996/05/18 15:52:19 christos Exp $ LIB= compat @@ -9,8 +9,8 @@ MACHINE_ARCH= ${XMACHINE_ARCH} .PATH: ${COMPATDIR} -SRCS= compat_exec.c compat_util.c compat_dir.c compat_vm.c kern_exit_43.c \ - kern_ipc_23.c kern_info_09.c kern_info_43.c \ +SRCS= compat_exec.c compat_util.c compat_dir.c compat_vm.c \ + kern_exit_43.c kern_ipc_23.c kern_info_09.c kern_info_43.c \ kern_resource_43.c kern_sig_43.c tty_43.c uipc_syscalls_43.c \ vfs_syscalls_25.c vfs_syscalls_43.c vm_43.c |