From patchwork Thu Mar 3 22:34:20 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steve Conklin X-Patchwork-Id: 85350 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id B496A1007D6 for ; Fri, 4 Mar 2011 09:34:35 +1100 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1PvH6L-0006wn-Ul; Thu, 03 Mar 2011 22:34:29 +0000 Received: from adelie.canonical.com ([91.189.90.139]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1PvH6J-0006wh-Mi for kernel-team@lists.ubuntu.com; Thu, 03 Mar 2011 22:34:27 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1PvH6J-0001Jq-Js for ; Thu, 03 Mar 2011 22:34:27 +0000 Received: from user-69-73-1-154.knology.net ([69.73.1.154] helo=[172.31.0.13]) by youngberry.canonical.com with esmtpsa (SSL3.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1PvH6J-0001WV-Be for kernel-team@lists.ubuntu.com; Thu, 03 Mar 2011 22:34:27 +0000 Subject: [PATCH] [HARDY] [SAUCE] Allow insertchanges to work in later version chroots From: Steve Conklin To: kernel-team@lists.ubuntu.com Date: Thu, 03 Mar 2011 16:34:20 -0600 Message-ID: <1299191660.9355.218.camel@xps-1> Mime-Version: 1.0 X-Mailer: Evolution 2.28.3 X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.13 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: kernel-team-bounces@lists.ubuntu.com Errors-To: kernel-team-bounces@lists.ubuntu.com This is a very minor change which only affects one maintenance script. No changes to kernel code. The command "git-log" was used in the script, which prevented the insertchanges target from executing unless you were in a hardy chroot. This changes that to "git log". I have confirmed that it still works in a hardy chroot, and it also now works in a Lucid chroot. Signed-off-by: Steve Conklin Acked-by: Tim Gardner Acked-by: Stefan Bader --- debian/rules.d/1-maintainer.mk | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/debian/rules.d/1-maintainer.mk b/debian/rules.d/1-maintainer.mk index 4625252..d088596 100644 --- a/debian/rules.d/1-maintainer.mk +++ b/debian/rules.d/1-maintainer.mk @@ -66,7 +66,7 @@ endif @echo "CONCURRENCY_LEVEL = $(CONCURRENCY_LEVEL)" printchanges: - @git-log Ubuntu-$(release)-$(prev_revision)..HEAD | \ + @git log Ubuntu-$(release)-$(prev_revision)..HEAD | \ perl -w -f debian/scripts/misc/git-ubuntu-log $(ubuntu_log_opts) insertchanges: