diff options
author | Matt Turner <[email protected]> | 2014-12-17 13:19:37 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-12-17 17:54:33 -0800 |
commit | 18ebf9e251cac6a0f898f4b7e159382f3c96b2b7 (patch) | |
tree | a72407ced7f7477c538596bd886f2500bb5c3102 /src/gallium/targets/vdpau | |
parent | b2b6cf243748f69037ff846fe9e9b9077eeb5d3e (diff) |
mesa: Remove unnecessary -f from $(RM).
$(RM) includes -f.
Diffstat (limited to 'src/gallium/targets/vdpau')
-rw-r--r-- | src/gallium/targets/vdpau/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/targets/vdpau/Makefile.am b/src/gallium/targets/vdpau/Makefile.am index 32b34011b13..2980cc310d9 100644 --- a/src/gallium/targets/vdpau/Makefile.am +++ b/src/gallium/targets/vdpau/Makefile.am @@ -118,7 +118,7 @@ install-data-hook: ln -sf $${l} \ $${dest_dir}/$${k}; \ done; \ - $(RM) -f $${dest_dir}/libvdpau_gallium.* + $(RM) $${dest_dir}/libvdpau_gallium.* uninstall-hook: for i in $(TARGET_DRIVERS); do \ |