From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1PsJjB-0001Sy-Kg for garchives@archives.gentoo.org; Wed, 23 Feb 2011 18:46:22 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38D8CE0453; Wed, 23 Feb 2011 18:46:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 09048E0453 for ; Wed, 23 Feb 2011 18:46:12 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8D9C41B4004 for ; Wed, 23 Feb 2011 18:46:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id E8D5B8006A for ; Wed, 23 Feb 2011 18:46:11 +0000 (UTC) From: "Dane Smith" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dane Smith" Message-ID: Subject: [gentoo-commits] dev/c1pher:master commit in: dev-util/ati-stream-sdk/files/, dev-util/ati-stream-sdk/ X-VCS-Repository: dev/c1pher X-VCS-Files: dev-util/ati-stream-sdk/Manifest dev-util/ati-stream-sdk/files/Makefile X-VCS-Directories: dev-util/ati-stream-sdk/files/ dev-util/ati-stream-sdk/ X-VCS-Committer: c1pher X-VCS-Committer-Name: Dane Smith X-VCS-Revision: aa7b6b6b6ccbb8748084982b096b74072c8dfc75 Date: Wed, 23 Feb 2011 18:46:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 793dd570f5a183959ffdf2e9e8f22df7 commit: aa7b6b6b6ccbb8748084982b096b74072c8dfc75 Author: Dane Smith gentoo org> AuthorDate: Wed Feb 23 18:41:29 2011 +0000 Commit: Dane Smith gentoo org> CommitDate: Wed Feb 23 18:41:29 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Ddev/c1pher.git;a=3D= commit;h=3Daa7b6b6b Fixed makefile. Regex in sed now works. --- dev-util/ati-stream-sdk/Manifest | 2 +- dev-util/ati-stream-sdk/files/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-util/ati-stream-sdk/Manifest b/dev-util/ati-stream-sdk/M= anifest index f39b6a1..a3913a4 100644 --- a/dev-util/ati-stream-sdk/Manifest +++ b/dev-util/ati-stream-sdk/Manifest @@ -1,4 +1,4 @@ -AUX Makefile 2297 RMD160 cb547b9644ae1f1e013f5627fca57d1b47173cde SHA1 8= c7308662ab9ba793c285d5fe6a14b8262875c59 SHA256 17fddeaea2c5d94ed0ee01bf43= 17a9f20f141ea68a92f78ae4c8b7a36fc6c9bd +AUX Makefile 2303 RMD160 60c8f2756550189262ee24714124a40f6369be8e SHA1 c= 4ae39fc81dfde80b62b876efe6b3540ff7422d9 SHA256 cdf4365663d68c898646c5544e= 280372214fcabf91115254342af432c3aac857 DIST ati-stream-sdk-v2.3-lnx32.tgz 49912168 RMD160 07c045de3118531472672= e9ef7b3763cb32f7d68 SHA1 972bdbe6942e52411a2f041720348e857f17c388 SHA256 = 07fd15a51a678c4378767f61466daf9da21d0bab6088a97a70136dd8c976aca6 DIST ati-stream-sdk-v2.3-lnx64.tgz 78659015 RMD160 57af36f62e590ae54cb9d= 43b880735979b77466c SHA1 43c94e5126563fe3fa4cb92fb6dd20f12864a86d SHA256 = f92537d1fc306af0bff1441af4669bf2fa668654b12d9fb53a3a872dc8826cad EBUILD ati-stream-sdk-2.3-r1.ebuild 1991 RMD160 b4d164ea0df067c366e334c3= d2259dea9cb589b2 SHA1 a20ba92ac7d2fbe271c59ea2f8381cdfc9eabfc0 SHA256 d26= ae0d006297e2819c5b6a8806d9797d381098a6036a3b329f9b6e333f48738 diff --git a/dev-util/ati-stream-sdk/files/Makefile b/dev-util/ati-stream= -sdk/files/Makefile index d5bbb83..95fc754 100644 --- a/dev-util/ati-stream-sdk/files/Makefile +++ b/dev-util/ati-stream-sdk/files/Makefile @@ -52,7 +52,7 @@ install-lib: test -z "$(LIBDIR)" || $(MKDIR) "$(LIBDIR)" @list=3D'$(LIBFILES)'; for f in $$list; do\ if test -f $$f; then\ - f1=3D`echo $$f | sed -e 's|lib/||g' -e 's|x86*/||g'`;\ + f1=3D`echo $$f | sed -e 's|lib/||g' -e "s|x86[_0-9]*/||g"`;\ base=3D`basename $$f1`;\ dir=3D`echo $$f1 | sed -e "s|$$base||g"`;\ test -z "$(LIBDIR)/$$dir" || $(MKDIR) "$(LIBDIR)/$$dir";\