From patchwork Thu Feb 9 08:29:51 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Keng-Yu Lin X-Patchwork-Id: 140329 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 D1FBDB6EE7 for ; Thu, 9 Feb 2012 19:30:02 +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 1RvPOC-0007Dx-Fi for incoming@patchwork.ozlabs.org; Thu, 09 Feb 2012 08:30:00 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1RvPOB-0007Ds-00 for fwts-devel@lists.ubuntu.com; Thu, 09 Feb 2012 08:29:59 +0000 Received: from [210.242.151.101] (helo=canonical.com) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1RvPOA-0002wI-9p; Thu, 09 Feb 2012 08:29:58 +0000 From: Keng-Yu Lin To: fwts-devel@lists.ubuntu.com Subject: [PATCH] debian: use autoreconf instead of dh-autoreconf Date: Thu, 9 Feb 2012 16:29:51 +0800 Message-Id: <1328776191-16862-1-git-send-email-kengyu@canonical.com> X-Mailer: git-send-email 1.7.9 X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.13 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: fwts-devel-bounces@lists.ubuntu.com Errors-To: fwts-devel-bounces@lists.ubuntu.com dh-autoreconf package is not available in Lucid archive. Signed-off-by: Keng-Yu Lin Acked-by: Colin King Acked-by: Alex Hung --- debian/control | 2 +- debian/rules | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) Previous PPA builds (0.24.17~l and 0.24.18~l ) failed due to this: https://launchpad.net/~firmware-testing-team/+archive/ppa-fwts-unstable-crack/+build/3189798 diff --git a/debian/control b/debian/control index 15a4f24..56eaefb 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: devel Priority: optional Maintainer: Colin King Standards-Version: 3.9.2 -Build-Depends: debhelper (>= 7), dh-autoreconf, libpcre3-dev (>= 7.8), libjson0-dev (>= 0.9), flex, bison +Build-Depends: debhelper (>= 7), autoconf, automake, libtool, libpcre3-dev (>= 7.8), libjson0-dev (>= 0.9), flex, bison Package: fwts Architecture: any diff --git a/debian/rules b/debian/rules index bace6e8..92ee62a 100755 --- a/debian/rules +++ b/debian/rules @@ -1,3 +1,8 @@ #!/usr/bin/make -f + +override_dh_auto_configure: + autoreconf + dh_auto_configure + %: - dh $@ --with autoreconf + dh $@