- Don't use "pathmunge" in the profile.d sh script to work around #548960.

This commit is contained in:
Ville Skyttä 2010-06-04 20:00:38 +00:00
parent 19dee0d7e6
commit 16a95ab0cf
2 changed files with 8 additions and 2 deletions

View File

@ -1,7 +1,10 @@
# Use ccache by default. Users who don't want that can set the CCACHE_DISABLE
# environment variable in their personal profile.
pathmunge @LIBDIR@/ccache
case ":$PATH:" in
*:@LIBDIR@/ccache:*) ;;
*) PATH="@LIBDIR@/ccache:$PATH" ;;
esac
# If @CACHEDIR@ is writable, use a shared cache there. Users who don't
# want that even if they have that write permission can set the CCACHE_DIR

View File

@ -6,7 +6,7 @@
Name: ccache
Version: 2.4
Release: 17%{?dist}
Release: 18%{?dist}
Summary: C/C++ compiler cache
Group: Development/Tools
@ -104,6 +104,9 @@ done
%changelog
* Fri Jun 4 2010 Ville Skyttä <ville.skytta@iki.fi> - 2.4-18
- Don't use "pathmunge" in the profile.d sh script to work around #548960.
* Sat Dec 19 2009 Ville Skyttä <ville.skytta@iki.fi> - 2.4-17
- Minor profile.d script performance improvements.
- Fix hardcoded /var/cache/ccache in profile.d scripts.