From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 98B9C13824A for ; Sat, 7 May 2016 20:04:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E12CE07F1; Sat, 7 May 2016 20:04:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B9D60E07F1 for ; Sat, 7 May 2016 20:04:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E081034076D for ; Sat, 7 May 2016 20:04:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3081E327 for ; Sat, 7 May 2016 20:04:48 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1462651473.1294da69329b3541c50d96b09eb6249f5150ea91.vapier@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools/ X-VCS-Repository: proj/releng X-VCS-Files: tools/catalyst-auto X-VCS-Directories: tools/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 1294da69329b3541c50d96b09eb6249f5150ea91 X-VCS-Branch: master Date: Sat, 7 May 2016 20:04:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5b99af4d-df06-429e-857f-ad30194cf691 X-Archives-Hash: f744431f2f4beb90b8b83c4c97ffd02c commit: 1294da69329b3541c50d96b09eb6249f5150ea91 Author: Mike Frysinger gentoo org> AuthorDate: Sat May 7 20:04:33 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sat May 7 20:04:33 2016 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=1294da69 catalyst-auto: try to fix syntax error in previous commits tools/catalyst-auto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/catalyst-auto b/tools/catalyst-auto index 101cf82..51e0c16 100755 --- a/tools/catalyst-auto +++ b/tools/catalyst-auto @@ -253,7 +253,7 @@ for i in $(find -name '*.spec'); do sed -i 's|^snapshot:.*$|snapshot: '${DATESTAMP}'|' ${i} # We don't want to mangle the source_subpath for our stage1 spec - if ! [[ grep -q '^target: *stage1$' ${i} || grep -q '^target: *stage4$' ${i} ]]; then + if ! grep -q '^target: *stage[14]$' ${i}; then sed -i 's|^source_subpath:.*$|source_subpath: '${new_source_subpath}'|' ${i} fi