diff options
author | 2006-06-25 05:45:59 +0000 | |
---|---|---|
committer | 2006-06-25 05:45:59 +0000 | |
commit | 5bdcb0917ec038929d467e6758fbd762145cb384 (patch) | |
tree | d75e8cdfbfbce0437a89a79d5e5a4bb6abb44e41 /app-admin/eselect-compiler/files | |
parent | teach people how to quote variables (diff) | |
download | gentoo-2-5bdcb0917ec038929d467e6758fbd762145cb384.tar.gz gentoo-2-5bdcb0917ec038929d467e6758fbd762145cb384.tar.bz2 gentoo-2-5bdcb0917ec038929d467e6758fbd762145cb384.zip |
Fixed bug #135688 which resulted in some wrappers not getting dedleted when profiles were switched.
(Portage version: 2.1.1_pre1-r1)
Diffstat (limited to 'app-admin/eselect-compiler/files')
-rw-r--r-- | app-admin/eselect-compiler/files/digest-eselect-compiler-2.0.0_rc2-r1 | 3 | ||||
-rw-r--r-- | app-admin/eselect-compiler/files/eselect-compiler-2.0.0_rc2-bug135688.patch | 13 |
2 files changed, 16 insertions, 0 deletions
diff --git a/app-admin/eselect-compiler/files/digest-eselect-compiler-2.0.0_rc2-r1 b/app-admin/eselect-compiler/files/digest-eselect-compiler-2.0.0_rc2-r1 new file mode 100644 index 000000000000..dbd66016d2ae --- /dev/null +++ b/app-admin/eselect-compiler/files/digest-eselect-compiler-2.0.0_rc2-r1 @@ -0,0 +1,3 @@ +MD5 278f76e8542bfc8859759fcd475c54f2 eselect-compiler-2.0.0_rc2.tar.gz 117489 +RMD160 03e6a8aa2d04a2c0b931325213ce224e5dceb7fe eselect-compiler-2.0.0_rc2.tar.gz 117489 +SHA256 fbd953c79e7d74636d16b70324f4f6573a0993d257212f5f6c04fe866d458eb9 eselect-compiler-2.0.0_rc2.tar.gz 117489 diff --git a/app-admin/eselect-compiler/files/eselect-compiler-2.0.0_rc2-bug135688.patch b/app-admin/eselect-compiler/files/eselect-compiler-2.0.0_rc2-bug135688.patch new file mode 100644 index 000000000000..1b5c3e4542f3 --- /dev/null +++ b/app-admin/eselect-compiler/files/eselect-compiler-2.0.0_rc2-bug135688.patch @@ -0,0 +1,13 @@ +Index: compiler.eselect.in +=================================================================== +--- compiler-config-2.0.0_rc2/src/profile-manager/compiler.eselect.in (revision 271) ++++ compiler-config-2.0.0_rc2/src/profile-manager/compiler.eselect.in (working copy) +@@ -380,7 +380,7 @@ + postopts="${postopts} --native" + else + # Figure out what bins are installed for the default CTARGET in case we are or are becoming default +- set_v="COMPILER_CONFIG_SET_${COMPILER_CONFIG_DEFAULT_CTARGET}" ++ set_v="COMPILER_CONFIG_SET_${COMPILER_CONFIG_DEFAULT_CTARGET//[-.]/_}" + if [[ -n ${!set_v} ]] ; then + oldprofile=${!set_v} + |