浏览代码

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 <nkidd@opentext.com>
Signed-off-by: Brian Paul <brianp@vmware.com>
tags/mesa-7.11-rc1
Nathan Kidd 14 年前
父节点
当前提交
f3652f0983
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4
    1
      src/mapi/glapi/gen/Makefile

+ 4
- 1
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


正在加载...
取消
保存