diff options
author | Dan Nicholson <[email protected]> | 2007-09-12 09:57:53 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-09-12 09:57:53 -0600 |
commit | f5557c3a528fbad3750aaa18595dc3548b600609 (patch) | |
tree | 7aa9495b9a3df7908aca45ca55f5df67043dbc37 /src/glu | |
parent | a0a5e8cfc04c14873441b50f7d594ef11806b9a8 (diff) |
DESTDIR support.
Diffstat (limited to 'src/glu')
-rw-r--r-- | src/glu/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glu/Makefile b/src/glu/Makefile index 5ddc50946aa..b8c55db6d0a 100644 --- a/src/glu/Makefile +++ b/src/glu/Makefile @@ -14,8 +14,8 @@ default: $(TOP)/configs/current done install: - $(INSTALL) -d $(INSTALL_DIR)/$(LIB_DIR) - $(INSTALL) $(TOP)/$(LIB_DIR)/libGLU.* $(INSTALL_DIR)/$(LIB_DIR) + $(INSTALL) -d $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR) + $(INSTALL) $(TOP)/$(LIB_DIR)/libGLU.* $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR) clean: @for dir in $(SUBDIRS) ; do \ |