diff options
author | Matt Turner <[email protected]> | 2014-12-07 00:12:29 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-12-12 12:11:49 -0800 |
commit | 3b7bcb5d04abf7c133b57e0d3647e8896ee23170 (patch) | |
tree | 5404e4f01f59333b3704fc02be4de978b871dfae /src/mesa | |
parent | 65155c208d84bfd49440c890253b43f266544931 (diff) |
dri: Add uninstall hooks to handle megadriver hardlinks.
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/Makefile.am b/src/mesa/drivers/dri/Makefile.am index d63425d6c6c..bdefe43cb6a 100644 --- a/src/mesa/drivers/dri/Makefile.am +++ b/src/mesa/drivers/dri/Makefile.am @@ -88,4 +88,9 @@ install-data-hook: done; $(RM) -f $(DESTDIR)$(dridir)/mesa_dri_drivers.* +uninstall-hook: + for i in $(MEGADRIVERS); do \ + $(RM) -f $(DESTDIR)$(dridir)/$$i; \ + done; + endif |