XDM Xresources has been extended and the new values are important for proper

working of newer XDM. Check for the missing values and ask the user to
fix manually.
This commit is contained in:
martin 2019-03-08 08:19:56 +00:00
parent c2f2b1bf58
commit 0a2b4fff53

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# $NetBSD: postinstall,v 1.222 2019/01/31 10:06:32 msaitoh Exp $
# $NetBSD: postinstall,v 1.223 2019/03/08 08:19:56 martin Exp $
#
# Copyright (c) 2002-2015 The NetBSD Foundation, Inc.
# All rights reserved.
@ -1855,6 +1855,12 @@ do_x11()
fi
done
# check if xdm resources have been updated
if ! ${GREP} 'inpColor:' ${_etcx11}/xdm/Xresources > /dev/null; then
msg "Update ${_etcx11}/xdm/Xresources${_notfixed}"
failed=1
fi
return ${failed}
}