diff options
author | 2013-02-02 04:03:56 +0000 | |
---|---|---|
committer | 2013-02-02 04:03:56 +0000 | |
commit | 3f4ba024e8179b38853d9879e15075923cbe405e (patch) | |
tree | 1365ee2513ff649f69b1546f6e8de138ade52049 /x11-libs/xosd/files | |
parent | Bump (diff) | |
download | gentoo-2-3f4ba024e8179b38853d9879e15075923cbe405e.tar.gz gentoo-2-3f4ba024e8179b38853d9879e15075923cbe405e.tar.bz2 gentoo-2-3f4ba024e8179b38853d9879e15075923cbe405e.zip |
fixed broken xosd-config, bug #286632
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key EB9B4AFA)
Diffstat (limited to 'x11-libs/xosd/files')
-rw-r--r-- | x11-libs/xosd/files/xosd-config-incorrect-dup-filter-fix.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/x11-libs/xosd/files/xosd-config-incorrect-dup-filter-fix.patch b/x11-libs/xosd/files/xosd-config-incorrect-dup-filter-fix.patch new file mode 100644 index 000000000000..8446297f15ce --- /dev/null +++ b/x11-libs/xosd/files/xosd-config-incorrect-dup-filter-fix.patch @@ -0,0 +1,15 @@ +https://bugs.gentoo.org/show_bug.cgi?id=286632 + +This patch disables reordering and duplicate removing for non-libs arguments, thus --param and alike gcc options may be used safe now. + +written by Andrew Savchenko +--- script/xosd-config.in.orig ++++ script/xosd-config.in +@@ -161,7 +161,6 @@ + fi;; + *) + case " $af_other_flags " in +- *\ $i\ *) ;; # already there + *) af_other_flags="$af_other_flags $i" ;; # add it to output + esac ;; + esac |