diff options
author | Marcin Slusarz <[email protected]> | 2011-10-16 20:13:49 +0200 |
---|---|---|
committer | Marcin Slusarz <[email protected]> | 2011-10-17 22:57:27 +0200 |
commit | 638d5a10f31aebe8642e862de7d0a1eaf977ebae (patch) | |
tree | 9dae9c6e0bda8f50573ab0b65171a8928bf7851c /src/gallium/targets | |
parent | 106c99fee52fe712ee5792e876b83aa318740b7d (diff) |
st/xorg: fix build when /lib/gallium directory does not exist yet
TARGET was not defined, so make checked directory instead of file
Diffstat (limited to 'src/gallium/targets')
-rw-r--r-- | src/gallium/targets/Makefile.xorg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/targets/Makefile.xorg b/src/gallium/targets/Makefile.xorg index be0cb4c8145..481e3d6a2b7 100644 --- a/src/gallium/targets/Makefile.xorg +++ b/src/gallium/targets/Makefile.xorg @@ -26,7 +26,7 @@ INCLUDES = \ -I$(TOP)/src/gallium/winsys \ $(DRIVER_INCLUDES) -LIBNAME_STAGING = $(TOP)/$(LIB_DIR)/gallium/$(TARGET) +LIBNAME_STAGING = $(TOP)/$(LIB_DIR)/gallium/$(LIBNAME) ifeq ($(MESA_LLVM),1) LDFLAGS += $(LLVM_LDFLAGS) |