diff options
author | Brian Paul <[email protected]> | 2006-06-26 15:34:21 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-06-26 15:34:21 +0000 |
commit | 78a6000cf2eb294181ea1af049fae6d4f6167bcb (patch) | |
tree | c3dcf07bbfe613ceee71ede8a9e51419702112aa /src/mesa/Makefile | |
parent | 0deb088cf070ef42a68b02952e755dda47d7c235 (diff) |
Use $(LIB_DIR) instead of $(TOP)/lib since libraries sometimes go into lib64/.
Probably need to fix the install destinations too...
Diffstat (limited to 'src/mesa/Makefile')
-rw-r--r-- | src/mesa/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/Makefile b/src/mesa/Makefile index 5f171f47571..652cb449070 100644 --- a/src/mesa/Makefile +++ b/src/mesa/Makefile @@ -152,7 +152,7 @@ install: default $(INSTALL) -d $(INSTALL_DIR)/include/GL $(INSTALL) -d $(INSTALL_DIR)/lib $(INSTALL) -m 644 $(TOP)/include/GL/*.h $(INSTALL_DIR)/include/GL - $(COPY_LIBS) $(TOP)/lib/libGL.* $(INSTALL_DIR)/lib + $(COPY_LIBS) $(LIB_DIR)/libGL.* $(INSTALL_DIR)/lib @if [ "${DRIVER_DIRS}" = "dri" ] ; then \ cd drivers/dri ; $(MAKE) install ; \ fi |