diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2008-04-25 11:35:00 -0700 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2008-04-25 11:36:55 -0700 |
commit | 10d70e2f2c182d717698bf3c8a2c1622a04ea3e8 (patch) | |
tree | e06175e5e75013dd876b7bccfe81a45e3008576d | |
parent | 004922b141e03f8eb1572a8dedda3f48d4e24a74 (diff) |
glcore: Respect DESTDIR
-rw-r--r-- | src/mesa/drivers/xorg/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/xorg/Makefile b/src/mesa/drivers/xorg/Makefile index 7278182446..a1b417447b 100644 --- a/src/mesa/drivers/xorg/Makefile +++ b/src/mesa/drivers/xorg/Makefile @@ -84,8 +84,8 @@ clean: -rm -f depend depend.bak install: $(LIBNAME) - $(INSTALL) -d $(DRI_DRIVER_INSTALL_DIR) - $(INSTALL) -m 755 $(LIBNAME) $(DRI_DRIVER_INSTALL_DIR) + $(INSTALL) -d $(DESTDIR)$(DRI_DRIVER_INSTALL_DIR) + $(INSTALL) -m 755 $(LIBNAME) $(DESTDIR)$(DRI_DRIVER_INSTALL_DIR) $(SYMLINKS): @[ -e $@ ] || ln -sf ../x11/$@ ./ |