From d655cc145d4e33abbb34227af498d136eef4601b Mon Sep 17 00:00:00 2001 From: alex14fr Date: Thu, 21 Aug 2025 22:13:13 +0200 Subject: [PATCH] Add module ABI tag to fix "Xorg -configure" ("No output driver" message). The driver directory name now includes a version tag, and the configure code has to search in the right directory. Signed-off-by: alex14fr --- hw/xfree86/common/xf86Configure.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree86/common/xf86Configure.c b/hw/xfree86/common/xf86Configure.c index 5d716acaef..4ec41297de 100644 --- a/hw/xfree86/common/xf86Configure.c +++ b/hw/xfree86/common/xf86Configure.c @@ -593,7 +593,7 @@ GenerateDriverList(void) { const char **ret; static const char *patlist[] = { "(.*)_drv\\.so", NULL }; - ret = LoaderListDir("drivers", patlist); + ret = LoaderListDir(XORG_MODULE_ABI_TAG "/drivers", patlist); /* fix up the probe order for video drivers */ if (ret != NULL)