diff options
author | Brian Paul <[email protected]> | 2006-10-19 20:09:05 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-10-19 20:09:05 +0000 |
commit | 464fcd0dd84cf4c705b992a087cdcb8b403eb8ef (patch) | |
tree | 79b8da581c361c33fd40bc4ca4605482a8b1b760 /src/mesa/Makefile | |
parent | c351858de8e51fa4a6425cf176cc43689189f3ff (diff) |
New bin/minstall script - a minimal replacement for 'install'.
Correctly handles symlinks so we can get rid of the COPY_LIBS stuff.
Diffstat (limited to 'src/mesa/Makefile')
-rw-r--r-- | src/mesa/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/Makefile b/src/mesa/Makefile index e1046bb8ad7..3f65ecf5cc9 100644 --- a/src/mesa/Makefile +++ b/src/mesa/Makefile @@ -155,10 +155,10 @@ install: default $(INSTALL) -d $(INSTALL_DIR)/$(LIB_DIR) $(INSTALL) -m 644 $(TOP)/include/GL/*.h $(INSTALL_DIR)/include/GL @if [ -e $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME) ]; then \ - $(COPY_LIBS) $(TOP)/$(LIB_DIR)/libGL* $(INSTALL_DIR)/$(LIB_DIR); \ + $(INSTALL) $(TOP)/$(LIB_DIR)/libGL* $(INSTALL_DIR)/$(LIB_DIR); \ fi @if [ -e $(TOP)/$(LIB_DIR)/$(OSMESA_LIB_NAME) ]; then \ - $(COPY_LIBS) $(TOP)/$(LIB_DIR)/libOSMesa* $(INSTALL_DIR)/$(LIB_DIR); \ + $(INSTALL) $(TOP)/$(LIB_DIR)/libOSMesa* $(INSTALL_DIR)/$(LIB_DIR); \ fi @if [ "${DRIVER_DIRS}" = "dri" ] ; then \ cd drivers/dri ; $(MAKE) install ; \ |