From: Nathan Kidd Date: Wed, 1 Jun 2011 14:29:26 +0000 (-0600) Subject: glapi: Make xserver location error more helpful X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f3652f0983e6469a515bdfad439286a1060fa545;p=mesa.git glapi: Make xserver location error more helpful glx code hasn't lived under xserver/GL for a long time now. Signed-off-by: Nathan Kidd Signed-off-by: Brian Paul --- diff --git a/src/mapi/glapi/gen/Makefile b/src/mapi/glapi/gen/Makefile index 87b928ccfbe..c3829dc005e 100644 --- a/src/mapi/glapi/gen/Makefile +++ b/src/mapi/glapi/gen/Makefile @@ -128,7 +128,10 @@ xorg: check-xorg-source $(XORG_OUTPUTS) check-xorg-source: @if ! test -d $(XORG_GLX_DIR); then \ - echo "ERROR: Must specify path to xserver/GL/ checkout; set XORG_BASE env var."; \ + echo "ERROR: Must specify path to xserver/ checkout. Set XORG_BASE env var."; \ + if test x$(XORG_BASE) != x; then \ + echo "'$(XORG_GLX_DIR)' does not exist."; \ + fi; \ exit 1; \ fi