Many (all?) apps (not just xedit) configure don't check for xt version so may get an empty appdefaultdir, causing these resources to be installed to top-level /. The fix is either: -PKG_CHECK_MODULES(APPDEFS, xt) +PKG_CHECK_MODULES(APPDEFS, xt >= 1.0) Or: PKG_CHECK_MODULES(APPDEFS, xt) appdefaultdir=$(pkg-config --variable=appdefaultdir xt) +if test "x$appdefaultdir" = "x" ; then + appdefaultdir=${datadir}/X11/app-defaults; +fi AC_SUBST(appdefaultdir) Or both? I will fix these. Let me know what to do.
Sorry about the phenomenal bug spam, guys. Adding xorg-team@ to the QA contact so bugs don't get lost in future.
I just pushed changes for xconsole, xdm, xedit, and xlogo.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.