pesa 14/09/11 02:14:01 Added: qtsql-5.3.1-path-filtering.patch Log: Add missing patch file. (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!)
Revision Changes Path 1.1 dev-qt/qtsql/files/qtsql-5.3.1-path-filtering.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsql/files/qtsql-5.3.1-path-filtering.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsql/files/qtsql-5.3.1-path-filtering.patch?rev=1.1&content-type=text/plain Index: qtsql-5.3.1-path-filtering.patch =================================================================== >From 9de7b4d7501c7e8e9eb561d02149a52b05a2bc1d Mon Sep 17 00:00:00 2001 From: Michael Palimaka <[email protected]> Date: Fri, 27 Jun 2014 04:25:52 +1000 Subject: [PATCH] Canonicalize inputs when filtering default system paths Contrary to expectations, various <foo>-config tools sometimes spit out denormalized paths, which breaks the text-based filtering, as it relies on exact matches with normalized paths. Change-Id: I0613ed24953a3bde19939d28d09572c88b43a361 Task-number: QTBUG-39216 Reviewed-by: Oswald Buddenhagen <[email protected]> --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 8c16b12..96cc82b 100755 --- a/configure +++ b/configure @@ -364,6 +364,7 @@ filterDefaultPaths() { local path path=`cat` + path=`"$relpath/config.tests/unix/makeabs" "$path"` echo "$1" | grep "^$path\$" > /dev/null || echo "$path" } -- 1.8.5.5
