Fix the required-list for compat_ultrix. With the merge of the
[pgoyette-compat] branch there is no longer a "compat" module; instead we have lots of version-specific compat_xx modules. Code inspection shows compat_ultrix uses compat_13 (and newer) stuff, so set the requirements list accordingly. Should fix PR port-pmax/54037
This commit is contained in:
parent
8fc8a45971
commit
b50e3080b4
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ultrix_mod.c,v 1.5 2014/03/07 01:33:44 christos Exp $ */
|
||||
/* $NetBSD: ultrix_mod.c,v 1.6 2019/03/03 22:25:00 pgoyette Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2008 The NetBSD Foundation, Inc.
|
||||
|
@ -34,7 +34,7 @@
|
|||
#endif
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ultrix_mod.c,v 1.5 2014/03/07 01:33:44 christos Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ultrix_mod.c,v 1.6 2019/03/03 22:25:00 pgoyette Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/module.h>
|
||||
|
@ -53,7 +53,7 @@ __KERNEL_RCSID(0, "$NetBSD: ultrix_mod.c,v 1.5 2014/03/07 01:33:44 christos Exp
|
|||
#define MD1 ""
|
||||
#endif
|
||||
|
||||
MODULE(MODULE_CLASS_EXEC, compat_ultrix, "compat" MD1);
|
||||
MODULE(MODULE_CLASS_EXEC, compat_ultrix, "compat_13" MD1);
|
||||
|
||||
static struct execsw ultrix_execsw[] = {
|
||||
#ifdef EXEC_ECOFF
|
||||
|
|
Loading…
Reference in New Issue